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