I cannot get past this and i cannot figure out what is wrong

Been doing the first couple of HTML lessons, got stuck here. Ran the tests, keeps on coming up with nest <a in

. Cannot get it to work, tried new paragraphs, same paragraphs, one in new paragraph one out. Can’t figure it out. any advice?

Your code so far


<h2>CatPhotoApp</h2>
<main>

 <a href="https://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 target="_blank" href="http://freecatphotoapp.com"> cat photos</a> 
</p>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13505.100.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.142 Safari/537.36.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

You’ve created your own a element. The requirement is you nest the a element that already exists

Thank you! This cleared things up.

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