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