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