Tell us what’s happening:
the code was not passing what’s the issue please someone explain
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 method="post" action='https://register-demo.freecodecamp.org'>
<fieldset>
<label>Enter Your First Name: <input type="text"/></label>
<label>Enter Your Last Name: <input type="text"/></label>
<label>Enter Your Email: <input type="text"/></label>
<label>Create a New Password: <input type="text"/></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
</form>
</body>
</html>
This was your best attempt so far. The only problem was the type attributes you created. If you use this code without the type attributes then it will work.