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