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