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