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