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