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