I need help with step 18 on building cat photo app

Tell us what’s happening:
Describe your issue in detail here.
i need help adding the second section with the


it keeps telling me the second set of is not wokring

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <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>
    </section>
    <section>
      <h2>Cat Lists</h2>
    </section>
    <section>
      <h3>Thinngs cats love</h3>
      </section>
  </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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30

Challenge: Step 18

Link to the challenge:

delet the third section and put h3 inside of second section after h2

Hi @lIvE.cHuCkY.
You need add <h3> after <h2>. And in your solution you placed <h2> in new <section>.
Delete the third section and place <h3> within second section after <h2>

1 Like

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