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