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