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