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