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