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