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