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