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