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