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