Learn HTML Forms by Building a Registration Form - Step 18

Tell us what’s happening:
I dont know whats happening, i think my code is right
the youtube tutorial said so, but its not working
can anyone help???

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 for:"first-name">Enter Your First Name: <input id:"first-name" type:"text" /></label>
        <label for:"last-name">Enter Your Last Name: <input id:"last-name" type:"text"/></label>
        <label for:"email">Enter Your Email: <input id:"email" type:"email" /></label>
        <label for:"new-password">Create a New Password: <input id:"new-password" type:"password" /></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;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

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

Link to the challenge:

Is this how you add an attribute/value to a tag? Look at how you have done it for other elements on the page. Such as the action attribute on the form tag.

the suggestion said that i should input id=“first-name”. I’ve done it and it stil didn’t work. Although i’ve followed the tutorial in Youtube. But still mine didn’t suceed. I think it had some error console.


/* file: styles.css */

Yes, that is the correct format for adding the id attribute to an element. Did you follow that format for adding the ids to the inputs? Or the for attributes to the labels?

And you should not add the text attribute to the inputs. The instructions didn’t ask you to add this attribute and I believe the tests will fail if you do.