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