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