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