Tell us what’s happening:
Describe your issue in detail here.
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>
<input><label>Enter Your First Name:</label></input>
<input><label>Enter Your Last Name:</label></input>
<input><label>Enter Your Email:</label></input>
<input><label>Create a New Password:</label></input>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
</form>
</body>
</html>
Show me what you tried.
(It should be just adding label to the outside of each line instead of having the input to the outside which is what you had. Just restart the step and do the opposite of what you did )
<fieldset>
<label><input>Enter Your First Name:</label></input>
<label><input>Enter Your Last Name:</label></input>
<label><input>Enter Your Email:</label></input>
<label><input>Create a New Password:</label></input>
</fieldset>
<fieldset>
<label><input> Enter Your First Name:</input></label>
<label><input> Enter Your Last Name:</input></label>
<label><input> Enter Your Email:</input></label>
<label><input> Create a New Password:</input></label>
</fieldset>