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