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