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