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