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