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