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