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