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