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