The second label should have the text Enter Your Last Name:

i think i double checked everything and it keeps throwing me the same hint.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <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 action='https://register-demo.freecodecamp.org'>
     <fieldset>
       <label for="fname">Enter Your First Name:</label>
       <input type="text" id="fname" name="fname"><br><br>
       <label for="lname">Enter Your Last Name:</label>
       <input type="text" id="lname" name="lname"><br><br>
       <label for="email">Enter Your Email:</label>
       <input type="email" id="email" name="email"><br><br>
       <label for="password">Create a New Password:</label>
       <input type="password" id="password" name="password"><br><br>
       
     </fieldset>
     <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; rv:102.0) Gecko/20100101 Firefox/102.0

Challenge: Step 13

Link to the challenge:

I’m a little confused by your HTML. Step 13 doesn’t have inputs for these labels yet. And the labels don’t have for attributes. This is what the starting code for step 13 looks like:

<fieldset>
        <label></label>
        <label></label>
        <label></label>
        <label></label>
</fieldset>

The only thing you should do is add the text to the labels. Are you just adding more stuff on your own because you want to or is this for a different step? If this is really for step 13 then only add what the instructions ask or the tests will most likely fail.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.