Can someone help me with this problem?

Please share your code instead of a screenshot.

Without your code, I can’t be sure, but I’d suggest checking the text inside your legend element. I can already see it’s missing an uppercase “W”. (Refer to test 3 in the console.)

here is my code

<meta charset="UTF-8" />

<title>Hotel Feedback Form</title>
<header>

  <h1>Hotel Feedback Form</h1>

  <p>

    Thank you for staying with us. Please provide feedback on your recent

    stay.

  </p>

</header>

<main>

  <form method="POST" action="https://hotel-feedback.freecodecamp.org">

    <fieldset>

      <legend>Personal Information</legend>

      <label for="full-name">Name (required):</label>

      <input type="text" id="full-name" name="name" placeholder="e.g., John Doe" required size="20">



      <label for="email">Email address (required):</label>

      <input

        placeholder="example@email.com"

        required

        id="email"

        type="email"

        name="email"

        size="20"

      />

      <label for="age">Age (optional):</label>

      <input type="number" name="age" id="age" min="3" max="100" />

    </fieldset>



    <fieldset>

      <legend>Was this your first time at our hotel?</legend>

      <input id="yes-option" type="radio" name="hotel-stay" value="yes" />

      <label for="yes-option">Yes</label>

      <input id="no-option" type="radio" name="hotel-stay" value="no" />

      <label for="no-option">No</label>

    </fieldset>

  <section>

    <fieldset>

      <legend>Why did you choose to stay at our hotel? (check all that apply).</legend>

    </fieldset>

  </section>  

  </form>

</main>

I recommend you reset the step and try again.

You do not need to add any section tags, as the instructions did not specify that:

Try resetting the step and following the directions: just create a fieldset element, add a legend element inside of it and add the proper text inside that legend element (watch for spacing, punctuation and capital letters).

thanks for your help i did reset the lesson and writed again and it worked

Awesome. You may mark this topic as solved.