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