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