Learn HTML by Building a Cat Photo App - Step 12

Hi Everyone.
I need Help on turning the word Cat photos to a link, and how to remove the old anchor tag and text below the paragraph.

  **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 https://freephotoapp.com</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_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

So you have already done this in the previous steps. Restart the step to get the original HTML back. Do you see the “cat photos” link you made below the p element?

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

You did that by wrapping the words “cat photos” in a tags. This is how you turn anything into a link. So you will want to do the same thing to the words “cat photos” in the p element.

Just use the back space key on your keyboard to delete it.

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