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