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