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