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