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