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