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