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