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