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