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