How do you make a website in HTML of Indian culture?
If you're using HTML, you would specify the "lang" value within
the HTML tag. You can look at a reference table of language codes
at the related link below.
But per your question, as Hindi is the standard language of
India, you would insert a tag that would look like:
<html lang="hi">
...
</html>
If you're using an XHTML document, insert a tag like:
<html xmlns="http://www.w3.org/1999/xhtml" lang="hi"
xml:lang="hi">
...
</html>