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