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