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