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