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