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