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