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