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