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