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