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