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