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