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