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