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