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