El atributo lang se utiliza para especificar el idioma utilizado en el elemento.
Sintaxis:
lang="language"
Valores de atributos:
- idioma: el atributo de idioma se utiliza para especificar el idioma.
Usaremos el atributo lang para especificar el idioma.
Ejemplo 1: En este ejemplo, usaremos el atributo lang para el inglés.
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 250" xmlns="http://www.w3.org/2000/svg"> <text x="5" y="35" lang="en-US" font-size="20px"> GeeksforGeeks </text> </svg> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, usaremos el atributo lang para el idioma alemán.
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 1000 250" xmlns="http://www.w3.org/2000/svg"> <text x="5" y="35" lang="de-AT" font-size="20px"> Hallo, Willkommen bei geeksforgeeks </text> </svg> </body> </html>
Producción: