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