Step 12 on the Cat project

i’m having trouble with step 12, on the cat web page project. The step states to remove the anchor below the p element which i did, but it still says i have to remove an anchor.

  **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 <a href="catphotoshttps://freecatphotoapp.com"</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 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Step 12

Link to the challenge:

Remember, a p element must have both an opening <p> tag and a closing </p> tag. You’ve remove the closing tag. Also, you aren’t using the correct URL for the href attribute on the link. You are supposed to use the same URL as the original link below the p tag:

<a href="https://freecatphotoapp.com">cat photos</a>

Finally, the opening and closing a tags for the link should go around the words “cat photos” in the p element. Just like they go around the words “cat photos” in the link above.

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