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