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