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