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