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