Aprende formularios HTML construyendo un formulario de registro - Paso 13

Tell us what’s happening:

Describe tu problema en detalle aquí.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

<!-- User Editable Region -->

  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>
      <fieldset>
      <fieldset> 
      <fieldset>
    </form>
  </body>

<!-- User Editable Region -->

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

Your browser information:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0

Challenge Information:

Aprende formularios HTML construyendo un formulario de registro - Paso 13

Bienvenido al foro @JohnBailarin

Agregue etiquetas de cierre fieldset a cada etiqueta de apertura.

Feliz codificación

1 Like