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