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