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