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