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