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