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