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