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