Step 12 Turn the words cat photos located inside p element into a link by replacing the words with the anchor element added previously. The p element should sho

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

  **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>.</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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Step 12

Link to the challenge:

1 Like

You moved the words “cat photos” outside of the <p> element. You need to leave them in there.

I would restart the step and then be sure to add the link around the words “cat photos” where they are, inside of the <p>.

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