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