How do i change the word cat photo into a link located inside the p element

i have no idea what they want me to do. i have tried so many times yet noting works , they want to me change the word cat photo into a link in the p element

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

Challenge: Step 12

Link to the challenge:

There is currently a p element that has the words “cat photos” in it. You can turn those words into a link by wrapping them with the anchor tags. In other words, you are going to put an anchor element inside of the p element. You already know how to make a link because you have an example of one below the p element. So use that example to help you turn the words “cat photos” inside of the p element into a link as well.

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