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