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