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