Tell us what’s happening:
it tells me to insert a link tag with the following attributes and values and I think the code is correct, but I can’t figure out why it doesn’t let me go on and counts it as an error. Thank you
Your code so far
<!DOCTYPE html>
<html lang="en">
<!-- User Editable Region -->
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<title>Registration Form</title>
</head>
<!-- User Editable Region -->
<body>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 OPR/97.0.0.0
Challenge: Learn HTML Forms by Building a Registration Form - Step 5
I skipped the step 5 and i went directly to step 6 by editing the url, i don’t know if i can consider it as a solution, but the code that i wrote in step 5 was correct.
<!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 /></label>
<label>Enter Your Last Name: <input /></label>
<label>Enter Your Email: <input /></label>
<label>Create a New Password: <input /></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
</form>
</body>
</html>