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