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