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