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