1

Hi I have an requirement to display Rupess sign but since most of the system won't support rupess font so i have gone through google font API and got css but don't know how to display Rupess symbol with google supported css . simply how to to display Rupess symbol with Google font css supportted . Thanks

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Hind" type="text/css" rel="stylesheet">
</head>
<body>
<span  id="rupess">Rs.</span>
</body></html>
Divya Singh
  • 19
  • 1
  • 4

1 Answers1

0

Please user & #x20b9; (removeing the blank space after & sign ) for rupee sign. For more details please read the answers of HTML code for INR

Community
  • 1
  • 1
M. K Hossain
  • 807
  • 1
  • 12
  • 28
  • @Hossain : i know this thing since system doesn't have regualr font so that's why using google font API . but don't know how to use that API and display Rupess Symbol – Divya Singh Mar 12 '17 at 04:40
  • Have you tried to use font-family in you css file, like #rupess { font-family: 'Hind', sans-serif;; } – M. K Hossain Mar 12 '17 at 04:53