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