Use on the webTotal Use [ 4199 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0b3794103909d2f97bcf7c25d66623ae?family=Mainland+PERSONAL+Black" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/0b3794103909d2f97bcf7c25d66623ae?family=Mainland+PERSONAL+Black);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Mainland PERSONAL Black";
src: url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.eot");
src: url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0b3794103909d2f97bcf7c25d66623ae.svg#Mainland PERSONAL Black")format("svg");
}
2CSS rules to specify fonts
font-family: "Mainland PERSONAL Black";