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