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