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