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