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