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