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