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