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