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