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