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