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