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