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