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