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