can change language in html? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 7

can change language in html?

22nd May 2018, 10:59 AM
MAX
MAX - avatar
5 Antworten
+ 9
Yes by <html lang="en">
22nd May 2018, 11:01 AM
Mitali
Mitali - avatar
+ 8
please give any example coding to produce another language web design
22nd May 2018, 11:08 AM
MAX
MAX - avatar
+ 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.
22nd May 2018, 11:15 AM
Kiwora
Kiwora - avatar
+ 7
Anastasia Naumova thanks...can u send any example?
22nd May 2018, 11:22 AM
MAX
MAX - avatar
+ 4
Example: <!DOCTYPE html> <html lang="en"> <!-- replace en language to your --> <body> <p>This is a paragraph.</p> </body> </html>
22nd May 2018, 10:06 PM
Josimov Dejan
Josimov Dejan - avatar