Learning html by building a cat photo app step 15

I’m needing help understanding what I’m supposed to do. can this be explained a bit better?

(I have a learning disability that causes me to not be able to understand something)

The last sentence of the instructions is below:

Take all the elements currently located within the main element and nest them in a section element.

What that is saying, is that all your HTML code that is inside the <main></main> tags needs to also be wrapped in <section></section> tags. Make sure to pay attention to indenting.

Try the above first, but if still not making sense, below is an example of what it should look like if you still have problems.

Should look something like this:

  <main>
    <section>
      othercode
    </section>
  </main>

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