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