Learn HTML Forms by Building a Registration Form - Step 14

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/* file: index.Ext.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>
    <form method="post" action='https://register-demo.freecodecamp.org'>
      <fieldset>
 <!-- Label for First Name -->
      <label for="first-name">First Name:</label>
      <!-- Label for Last Name -->
    
      </fieldset>
      <fieldset>
      <legend>Section 2</legend>
<label for="last-name">Last Name:</label>
      <!-- Label for Email -->
      <!-- Form fields for Section 2 will go here -->
    </fieldset>
<label for="email">Email:</label>
      <!-- Label for Password -->

    <!-- Third Section -->
    <fieldset>
      <legend>Section 3</legend>
<label for="password">Password:</label>
      </fieldset>
      <!-- Form fields for Section 3 will go here -->
    </fieldset>
    </form>
  </body>
</html>
/* file: styles.Ext.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Your mobile information:

TECNO PR651H - Android 11 - Android SDK 30

Challenge: Learn HTML Forms by Building a Registration Form - Step 14

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

You did not include your code, or if you did, it is not labeled, so we can’t tell specifically what is causing your problems. But if you’re having trouble understanding what you’re being asked to do, I hope this helps. There are several fieldset elements already in your code. And between the first opening and closing fieldset elements you need to put four sets of label elements.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!