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