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