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