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