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