Use on the webTotal Use [ 5348 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8ac296e4419e55b540f12c2767d35adc?family=Earthman+BB" 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/8ac296e4419e55b540f12c2767d35adc?family=Earthman+BB);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Earthman BB";
src: url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.eot");
src: url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8ac296e4419e55b540f12c2767d35adc.svg#Earthman BB")format("svg");
}
2CSS rules to specify fonts
font-family: "Earthman BB";