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