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