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