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