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