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