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