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