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