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