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