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