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