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