I am stukked at html step 32 where it says all of your section elements should be between "main" elements. i am not sure where i need to write main elements

    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <figure>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
    <figcaption>Cats <em>love</em> lasagna.</figcaption>  
  </figure>
  <h3>Top 3 things cats hate:</h3>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <figure>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
    <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
  </figure>
  </section>
</main>

Your code isn’t showing any main opening tag and section opening tag. Mind you, you can have multiple section elements as descendants of main elements.

   [25m](https://forum.freecodecamp.org/t/i-am-stukked-at-html-step-32-where-it-says-all-of-your-section-elements-should-be-between-main-elements-i-am-not-sure-where-i-need-to-write-main-elements/523885?u=gcloud)
<main>
<section>
<ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <figure>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
    <figcaption>Cats <em>love</em> lasagna.</figcaption>  
  </figure>
  <h3>Top 3 things cats hate:</h3>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <figure>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
    <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
  </figure>
  </section>
</main>

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