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