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