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