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