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