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