The error code is shutting me out

Tell us what’s happening:
Well when I put in the code it keeps saying Your

p

element should have the text "View more " (with a space after it).

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>
<a href="https://freecatphotoapp.com" target="_blank">cat photos</a>
</p>
<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 " 
cat photos,
<a herf="https://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/84.0.4147.105 Safari/537.36.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

You have a few problems here.

First of all, when it says:

Your p element should have the text "View more " (with a space after it)

It should be understood that you don’t include those quote marks - they surround the text they want - they are not a part of it.

Secondly, you have “cat photos” twice - and one time “photos” is capitalized.

Lastly, you’ve misspelled “href”.

When I make those changes, you’re code passes.