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