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