Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
i really didnt understand the task clearly and can not do it, can you please help?

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <main>
      <a href="https://freecatphotoapp.com">cat photos</a>
    </main>
    <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/105.0.0.0 Safari/537.36

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

Link to the challenge:

You’ve added extra main tags and you removed the p tags and most of the text that was in the p element. These are not things the instructions asked you to do. I would restart the step to get the orignal HTML back.

The only thing you want to do is turn the words “cat photos” inside the p element into a link. You have already done this exact thing with the words “cat photos” below the p element. You did that by wrapping the words with the appropriate a tags. You want to do exactly the same thing to the words “cat photos” in the p element. Do not do anything else.

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