Nesting an element into another element

Tell us what’s happening:
Describe your issue in detail here.

" Your anchor (a) element should be nested within the p element. "

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p> <href="https://freecatphotoapp.com">cat photos>Click here to view more cat photos.</p>
    <a href="https://freecatphotoapp.com">cat photos</a>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

Nesting means to place one element inside of another. Thus, if the anchor element should be nested within the p element then that means the opening and closing a tags should be in between the opening and closing p tags.

I would recommend you restart this step to get the HTML back and try again.

Thanks a lot for the support.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.