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