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