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