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