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