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