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