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