Learn HTML Forms by Building a Registration Form - Step 14

Tell us what’s happening:

hey everyone!
I have tried to get the correct solution considering the following issues, i didn’t understand how to code label within the fieldset . look at the step 14.
The first fieldset will hold name, email, and password fields. Start by adding four label elements to the first fieldset.

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>
  <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'>
    
 <label><fieldset></fieldset></label>
      <fieldset></fieldset>
      <fieldset></fieldset>
      
    </form></label>

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn HTML Forms by Building a Registration Form - Step 14

Hello.

Look this:

You need to add the elements (label) into the first fieldset.

Example:

<fieldset>
  <element 1>
  <element 2>
  <element 3>
  <element 4>
</fielsdet>

Greets

The following is what you get in this challenge by default:

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

      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>

One ‘label’ element includes an opening <label> and closing </label> tag. In sum, you should add four ‘label’ elements between the first opening ‘fieldset’ and closing ‘fieldset’ tag.

1 Like

Fantastic! as you tell me, i try it to do & finally i get the write solution. :pray:

1 Like