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