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