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