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