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