Learn HTML Forms by Building a Registration Form - Step 13

Tell us what’s happening:
Describe your issue in detail Am asked to do three fieldset, check my code and help me correct it .

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>
<legend>Personal</legend>
<label for="fname">First name</label><br>
<input type="text" id="fname" name="fname" value="Itohan"><br>
<label for="lname">Last name</label><br>
<input type="text" id="lname" name="lname" value="Esosa"><br>
<label for="pn">Phone number</label><br>
<input type="text" id="pn" name="pn" value="08085011034"><br>
</fieldset>
    </form>
  </body>
</html>
/* file: styles.Ext.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Your mobile information:

Infinix X665E - Android 12 - Android SDK 31

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

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!

Hi @Itohan

You should add three fieldset elements.

You have entered more code than is required for this step.
Please reset the step to restore the seed code and try again.

Happy coding