I can't continue at this stage, what do I have to do?

Tell us what’s happening:
Describe your issue in detail here.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" type="text/css" 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>Enter Your First Name:<br><input></label>
       <label>Enter Your Last Name:<br><input></label>
       <label>Enter Your Email:<br><input></label>
       <label>Create a New Password:<br><input></label>
     </fieldset>
     <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/103.0.5060.53 Safari/537.36

Challenge: Step 15

Link to the challenge:

What is the purpose of the <br> element you added? It does not add a space, it creates a line break. The instructions do not ask you to use it. I think there is a good change that the <br> is causing you to fail.

Yes, I tried it like that and it keeps getting the same

Instead of the <br> you have to add an <input> element AFTER the text of each label.
Do not forget to close it right after open: <element></element>

You just need a space after a colon(:). So, lets remove br element and hit space 1 time after each colon(:). You will complete that step.

1 Like

Anytime you try something new and it does not work we need to see your actual HTML so we know what you did.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.

Thank you, thank you very much.

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