Learn HTML Forms by Building a Registration Form - Step 5

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

Link to the challenge:

Hello and welcome to our forum~!

Your code passes on my end. Are you running any browser extensions? These can interfere with our tests and cause code that should pass to fail.

1 Like

Hello there,you code seems to be ok.

1 Like

Hi and ty. I know it is correct but it continue to say " You should have one self-closing link element."

Hello, I can’t go on anymore, I’m freaking out. I think I’ll skip this test and go on to the next one.

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.

Let me see your current block of code.

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

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.