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