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