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