I’m not sure what the issue is here. There is a space after every colon, I believe there are hyphens where they’re needed, and I don’t see any typos.
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 action='https://register-demo.freecodecamp.org'>
<fieldset>
<label for "first-name">Enter Your First Name: <input id="first-name" name="first-name" type="text" required></label>
<label for "last-name">Enter Your Last Name: <input id="last-name" name="last-name" type="text"></label>
<label for "email">Enter Your Email: <input id="email" name="email" type="text"</label>
<label for "new-password">Create a New Password: <input id="new password" name="new password" type="text"></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
</form>
</body>
</html>
you have way way too much code (some of it wrong too).
the original set of lines presented to you (and I suggest you click Restart to see them again) were these:
<fieldset>
<label>Enter Your First Name:</label>
<label>Enter Your Last Name:</label>
<label>Enter Your Email:</label>
<label>Create a New Password:</label>
</fieldset>
and the instructions given were:
Nest an input element within each label . Be sure to add each input after the label text, and include a space after the colon.
So here’s a tip for you. When you do this correctly, each line will gain exactly 1 element. The total number of characters you will type per line is 7 (and 1 space character)
I based my code off of someone else’s response to a step 16 issue because I had no idea what those instructions meant and just needed to see an example. I’ve added an input element strictly before the ending tag of each label, but that doesn’t seem to satisfy the requirements either.
okay try that again (the input element being added all alone) and show me your new code please (if it still does not work).
I will try it on my end and let u know next steps.