How to integrate Rupee or other currency symbol on your webpage without images
You would have seen many websites showing text with stylish fonts, even if those fonts are not available on client site.
It’s very simple. Just copy paste a CSS code somewhere in HEAD tag.
If you are aware with my new font amty currency then you can do it in next 2 steps very easily.
- You need fonts(various format) to keep on your web server. You can download them from the download link given in the end of this article.
- Use the following CSS code in your CSS file or on your webpage
@font-face {
font-family: 'Conv_AmtyCurrency';
src: url('fonts/AmtyCurrency.eot');
src: local('?'),
url('fonts/AmtyCurrency.woff') format('woff'),
url('fonts/AmtyCurrency.ttf') format('truetype'),
url('fonts/AmtyCurrency.svg') format('svg');
font-weight: normal;
font-style: normal;
}
- Different browsers support different version of font. So we must to keep and reference all type of fonts on web server
- Amty Currency font is open source. So it can be used by any organization
- Remember that @font-face increase one extra http request since required font are not referred from client cache.
- Referring images instead of font could be a good option since images are stored in client cache. And they decrease http requests. In addition images can be merged with other images. And it can be used as image sprite.
- Using font is better than images since you can re-size it, color it as per your need. For every symbol of font you need not to create a separate image.













