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