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