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