Incorrect code - I don't know here I'm stucl

!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>Enter Your First Name: <input></input>
        </label>
        <label>Enter Your Last Name: <input></input>
        </label>
        <label>Enter Your Email: <input></input>
        </label>
        <label>Create a New Password: <input></input>
        </label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>

for some reason my input tags are incorrect and my code does not pass. The hint says:
"You should add the first input after the label text Enter Your First Name and incldue a space after the colon - I did do this (as shown in my code above) but for some reason it’s not working - can someone please help!

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Input tags are self-closing.
Try this

<label>Enter Your First Name: <input type="text"></label>

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