Learn HTML by Building a Cat Photo App - Step 12

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

I do not understand why my code is not passing. I nested the a element within the p element and its still saying that its incorrect.
Your code so far

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.<a href="https://freecatphotoapp.com">cat photos</a></p>
    
    
    <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 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

Hey!
You need to a link to https://freecatphotoapp.com with the text “cat photos” in this challenge.

However you aren’t supposed to add another “cat photos” link to the HTML. Instead you need to replace the “cat photos” that’s inside of the p tag or the result will become.

Hope this helps! :smile:

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