¿Cuál es la diferencia entre <html lang=”en’> y <html lang=”en-US’> ?

El atributo lang especifica qué idioma se utiliza para escribir el contenido de una página web. Se utiliza para establecer el idioma de todo el texto de la página web.

La diferencia entre <html lang=”en’> y <html lang=”en-US’> se describe a continuación:

<html lang=”en’>
<html lang=”en’> solo especifica el código de idioma de la página, lo que significa que se usa en o inglés para todo el texto de la página.

Ejemplo:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,
      initial-scale=1.0">
    <title>lang Attribute</title>
    <style>
        body{
            text-align: center;
        }
        h1{
            color: green;
        }
    </style>
</head>
<body>
    <h1>GeeksforGeeks</h1>
    <p>jQuery is an open source JavaScript library that 
simplifies the interactions between an HTML/CSS document,
or more precisely the Document Object Model (DOM), and JavaScript.
Elaborating the terms, jQuery simplifies HTML document 
traversing and manipulation, browser event handling, 
DOM animations, Ajax interactions, and cross-browser 
JavaScript development.</p>
</body>
</html>

Producción:

<html lang=”en-US’>
El <html lang=”en-US’> especifica el código de idioma de la página seguido del código de país, lo que significa que se utiliza el estilo de inglés estadounidense para todo el texto de la página.

<html lang=”en-GB’> que significa el estilo de inglés del Reino Unido
<html lang=”en-IN’> que significa el estilo de inglés de la India

Ejemplo:

<!DOCTYPE html>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,
     initial-scale=1.0">
    <title>lang Attribute</title>
    <style>
        body{
            text-align: center;
        }
        h1{
            color: green;
        }
    </style>
</head>
<body>
    <h1>GeeksforGeeks</h1>
    <p>jQuery is an open source JavaScript library that
 simplifies the interactions between an HTML/CSS document,
 or more precisely the Document Object Model (DOM), and JavaScript.
Elaborating the terms, jQuery simplifies HTML document 
traversing and manipulation, browser event handling, 
DOM animations, Ajax interactions, and cross-browser
 JavaScript development.</p>
</body>
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por Rajnis09 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *