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