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