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