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