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