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