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