Learn HTML Forms by Building a Registration Form - Step 13

How do I set three fieldset element in within the form element

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> 
       <fieldset fieldset fieldset method="post" action='https://register-demo.freecodecamp.org'>
    </form>
  </body>
</html>
/* file: styles.Ext.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Your mobile information:

I2011 - Android 13 - Android SDK 33

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

Link to the challenge:

One fieldset element includes the opening <fieldset> tag and the closing </fieldset> tag.

Hi there!
Look at your other html tags and the current one you added. Did you see any difference in it?