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