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