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