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