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