Learn HTML Forms by Building a Registration Form - Step 17

I’ve been stuck on this for days and am unsure where I am going wrong.

The step reads “Nest an input element within each label. Be sure to add each input after the label text, and include a space after the colon”

After I’ve put an input element after each of the label texts (with a space after the colon) and checked my code, I’m receiving a no-pass hint that reads “You should add the third input after the label text Enter Your Email: and include a space after the colon”

Did I not do this?

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

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

Challenge: Learn HTML Forms by Building a Registration Form - Step 17

Link to the challenge:

Hello, and welcome to the forum! I have copied and pasted your code in the challenge and it passes for me. If you have any browser extensions running then that can cause an issue with the challenge. You can try a different browser from the one your are currently using and run the challenge again

Welcome to our community!

Your code is OK.

  1. Restart step
  2. Refresh page (F5)
  3. Follow the note: “Note: Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests. If you face issues, we recommend disabling extensions that modify the content or layout of pages, while taking the course.”
  4. Change the browser

Oh boy lol. I definitely have more than a few extensions so that must be it.

Thank you all for the welcoming :blush:

Consider this a problem solved :+1:

2 Likes

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