Https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph02

**Tell us what’s happening:**i did the code right but it’s not running

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a href="http://freecatphotoapp.com" target="_blank">cat photos</a>

<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
<p>
"View more"
<a> href="http://freecatphotoapp.com">cat photos</a>
</p>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

To nest means to “place within”

1 Like

Reset your code and start over. Pay attention the what it asks you to do.
From the lesson, " nest the existing a element within a new p element (just after the existing main element)"
You started after the closing main element and created a new a element instead of using the existing one.
Hope that helps.

1 Like

@Roma i think @Segun1 has not indented the nested element
correct me if im wrong

1 Like

The tests do not care about indentation.

1 Like

Thank you for your feedback

Yeah, thanks a lot. I have gotten it.