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