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