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