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