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