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