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