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