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