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