How to change the default language of html pages ?

For an ex, i have created a web page which will display in English language. But i want to change / display it in someother lang. For ex in spanish . Anyone give me the html tag for this. Thanks in advance.

Public Comments

  1. There is no html tag for that. Browsers read only the tags and what you input into the html file. You need to translate and re-write all the text in Spanish. You dont need to change the tags since thats the standard language for HTML, but you do need to translate and re-write all the text part into the language of your choice. For example: <html> <body> Hello, my name is Sean! </body> </html> Just change it to: <html> <body> Hola, me llamo Sean! </body> </html>
Powered by Yahoo! Answers