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