Build a Hotel Feedback Form - Step 9

Tell us what’s happening:

Help, I keep getting same error message of your element should have the correct text.


Personal Information
Name(required):



What am I doing wrong, please?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hotel Feedback Form</title>
  </head>
  <body>
    <header>
      <h1>Hotel Feedback Form</h1>
      <p>
        Thank you for staying with us. Please provide feedback on your recent
        stay.
      </p>
    </header>
    <main>

<!-- User Editable Region -->

      <form method="POST" action="https://hotel-feedback.freecodecamp.org">
        <fieldset>
          <legend>Personal Information</legend>
          <label for="full-name">Name(required):</label>
          <input>
        </fieldset>
      </form>

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Hotel Feedback Form - Step 9
https://www.freecodecamp.org/learn/full-stack-developer/workshop-hotel-feedback-form/step-9

Hi @tzonirod8 and welcome to our community!

… add a label element with the text of Name (required): .

The text of your label element does not exactly match the requirements.

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