+ 7
can change language in html?
5 ответов
+ 9
Yes by <html lang="en">
+ 8
please give any example coding to produce another language web design
+ 7
You just put this code and then write all paragraphs and other text content in the language you switched to.
For example, if your document was written in English, then you add lang="ru" in the html tag, this way you have to rewrite everything that was in English in to Russian (because "ru" is Russian for short). This was just an example, you can use any language you want.
+ 7
Anastasia Naumova thanks...can u send any example?
+ 4
Example:
<!DOCTYPE html>
<html lang="en"> <!-- replace en language to your -->
<body>
<p>This is a paragraph.</p>
</body>
</html>