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