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