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