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