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