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