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