It keeps telling me "Your a element should be nested within your new p element. Your p element should have the text "View more " (with a space after it)."

Tell us what’s happening:

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 target="_blank" href="http://freecatphoto.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/83.0.4103.116 Safari/537.36.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

Hi @brainz,

You have created a new p element under main element, there was no requirement for this as the task asks you to edit existing a element.

Reset your code and simply edit your existing a element just after the existing main element by nesting the existing a element within p element’s opening and closing tags. Add the required text to your new p element and that’s it, you should pass :slight_smile:

Give it another try and if you get stuck again, ask again here with your new code included so we can see how to help you.