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