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