Aprende formularios HTML construyendo un formulario de registro - Paso 14

Cuéntanos qué está pasando:

Pues resulta que parece el mensaje de que tengo que cerrar bien los lablel, sin embargo yo no veo cual es el problema

Tu código hasta el momento

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>

<!-- User Editable Region -->

    <form method="post" action='https://register-demo.freecodecamp.org'>
      <fieldset>
        <label></label>
        <label></label>
        <label></label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>

<!-- User Editable Region -->

  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36

Información del Desafío:

Aprende formularios HTML construyendo un formulario de registro - Paso 14

Bienvenido al foro @adeo11

Agregue un elemento “etiqueta” más para formar un conjunto de cuatro.

Feliz codificación