Aprende accesibilidad construyendo un cuestionario - Paso 4

Cuéntanos qué está pasando:

Hola;
intento solucionar este ejercicio y no encuentro la solución, si alguien me puede ayudar se lo agradecería enormemente…

Tu código hasta el momento

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

  <head>
    <meta name="content" name="description"/>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css" />
  </head>

<!-- User Editable Region -->

  <body>

  </body>
</html>

/* file: styles.css */
body {
  background: #f5f6f7;
  color: #1b1b32;
  font-family: Helvetica;
  margin: 0;
}

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Información del Desafío:

Aprende accesibilidad construyendo un cuestionario - Paso 4

Your meta element should have two attributes, name and content.

Standard metadata names

For example, to indicate that a document prefers dark mode but does render functionally in light mode as well:

<meta name="color-scheme" content="dark light" />
1 Like