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