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