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