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