Hey guys, I’m new here. I’m doing FCC and learning HTML. I can’t seem to get the code right. Here’s the task:
Describe your issue in detail here.
Nest the existing a
element within a new p
element. The new paragraph should have text that says View more cat photos
, where cat photos
is a link, and the rest is plain text.
Here’s the code I’ve put in:
<h2>CatPhotoApp</h2>
<main>
<img src ="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
<p>View more <a href= "https://wwww.freecatphotoapp.com"target="_blank">cat photos</a></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>
</main>
What am I doing wrong? The code above never passes the tests I run even though it looks right to me. Would appreciate some help. Thanks in advance