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