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