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