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