!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!