Its telling me that I need to nest the ‘a’ inside the ‘p’ and I thought I did and i’m so confused right now. Can someone tell me if theres an error I just dont see? Im new at coding.
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://freecodecamp.org">cat photos</a> here
</p>
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13421.99.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.
Challenge: Nest an Anchor Element within a Paragraph
This is a comment inside of the HTML code, you can write comments in between other HTML elements, comments are not rendered by Web Browsers and just there so you can write something for your own context (like a note about what certain parts of the code does or a part of the code you do not want the browser to render anymore ).
you can replace the add p tag here part and can write anything in there, For Example: <!--this is an example comment-->
In this context though @jwilkins.oboe have told you to replace the <!--add p tag here--> comments with <p> tags.