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