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