Hey I’ve been struggling on step 16 for like 3 days and I know the answer is in front of my face but I cant get it right can you help me out
So this is the problem
Step 16
Before adding any new content, you should make use of a section
element to separate the cat photos content from the future content.
Take your h2
, comment, p
, and anchor (a
) elements and nest them in a section
element.
This is my code
<main>
<h1>CatPhotoApp</h1>
<section
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>
I’ve of course tried about 30 other combinations but this is my most generic answer, when I move the section closing tag to just be after the section element because it isn’t in my example, it just says there’s no closing tag if I move it to after the anchor element it says there isn’t even a closing tag when I move it to after the main same thing , I have tried to take the slash from the closing tag my code still isn’t right and I have made my dash face the other way also
Could you help me out Im really confused on what the hints want me to do and I’m running out of solutions thank you for your time I know this is a lot to read :}