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