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