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