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