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