Build a Hotel Feedback Form - Step 22

Tell us what’s happening:

I put my element below the element, but still there is an error sign when I’m checking my code.

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>
      <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="Ex. 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" />
          <label for="yes-option">Yes</label>
          <input id="no-option" type="radio" name="hotel-stay" />
          <label for="no-option">No</label>
        </fieldset>


<!-- User Editable Region -->

        <fieldset>
        <legend>
          Why did you choose to stay at our hotel? (Check all that apply)
        </legend>
        <input id="ads" name="ads" value="ads">
        <label for="ads">Social Media Ads</label>
        </fieldset>

<!-- User Editable Region -->

      </form>
    </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 YaBrowser/25.8.0.0 Safari/537.36

Challenge Information:

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

You have the error “You should have a checkbox input below your legend element.”, is your input a checkbox?

You should set type attribute to checkbox in your input element .

Thank you. I fixed it, everything works now

Thank you for your help