Learn Accessibility by building a quiz - STEP 14

I currently have all the steps correct besides this one:
You should nest three sections within the form element, and idk how to fix this, because i think i have it for the most part correct.

This is my code so far.

<main>
      <form action="https://freecodecamp.org/practice-project/accessibility-quiz" method="post">
        <section>
          <section>
            <section>
            </section>
          </section>
        </section>
    </form>
    </main>

I appreciate the help.

the three section elements should be siblings, not nested in each other

1 Like

Hello, you just need to move all the closing tags in other words one open and one closed three times.

1 Like

Thank you both, that did in fact fix the issue of me getting it wrong :slight_smile:

1 Like

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