Stuck on step 12 on cat photo app

I’m not quite understanding what I must do. I may be overestimating the situation but I’m a little confused.

  **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".</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 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36

Challenge: Step 12

Link to the challenge:

You want the link to be on the words “cat photos” in the p element. Right now you have created a link with the words “cat photos” after the p element. You can put a link inside of a p element.

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