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