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