Basic HTML and HTML5: Nest an Anchor Element within a Paragraph

Hi Everyone!
I can’t seem to figure out the last bit of this code. I keep running into the part of the equation that says Youraelement should not have the text “View more”. I just can’t figure out where I am going wrong after getting a hint and even looking up a video on this lesson.

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 <a href="http://freecatphotoapp.com"cat photos"</a>the couch sleep in the sink fluffy fur catnip scratched.</p>
<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>
<p>view more <a href="http://freecatphotoapp.com">cat photos</a>.</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) 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:

You need to read the instructions carefully. You have nested your link INSIDE of the main block. The instructions tell you to put it some other place. Otherwise your markup looks correct.

1 Like