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