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