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