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