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