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