Learn HTML Forms by Building a Registration Form - Step 15

Tell us what’s happening:

Hi coders,
why my code is still not correct even if i remove the
tag it will still say its not correct

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>
    <form method="post" action='https://register-demo.freecodecamp.org'>

<!-- User Editable Region -->

      <fieldset>
        <label>Enter Your First Name:</label><br>
        <label>Enter Your Last Name:</label><br>
        <label>Enter Your Email:</label><br>
        <label>Creat a New Passwrod:</label>
      </fieldset>

<!-- User Editable Region -->

      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Learn HTML Forms by Building a Registration Form - Step 15

welcome the forum :wave:

Doesn’t mention anything about <br> tags in the instructions.

You need to follow the instructions exactly and add nothing more or less. The tests can’t predict what you might do.

1 Like

Hi, @pkdvalis
it’s still not working

Can you provide a snippet of what your code looks like now?

– solution code removed by mod –

That looks like it should pass. To be sure reset the challege and copy and paste each text item to the labels and see if that works.

  • removed by mod
    finally its solved sir
1 Like

Please don’t post solution code to the forum

2 Likes