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