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