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