Learn HTML by Building a Cat Photo App - Step 15

**pls anyone help i can’t seem to find a solution to this : At this point I don’t understand .

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1

Challenge: Learn HTML by Building a Cat Photo App - Step 15

Link to the challenge:

let’s look at the instructions:

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

let’s break the instructions down into parts and decipher each part:
1- take all the elements currently located within the main element…

Okay so what does this line mean? It means, we are about to do something with all the HTML elements we currently see nested inside of the <main> and </main> tag.
Easy enough?

2- nest them in a section element.

And what does this one mean?
“Nest” - it means to put inside something
section element - it means something that looks like this <section> and </section>

So put all the code that was mentioned in part 1 of the instruction inside a section element.

Let me know if you are still stuck after reading this.

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