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