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