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