Learn HTML by Building a Cat Photo App - Step 17

I put the elament under the other elament but it did not w

       <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>
1 Like

So in your line 11, </ section> would not work without its opening tag at the start.
For example: The opening tag <p> for paragraph would not work without its closing tag </p>

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