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