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