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