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