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