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