Learn HTML by Building a Cat Photo App - Step 12

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 cat photos.</p>
    <a href="https://freecatphotoapp.com">https://freecatphotoapp.com</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/104.0.0.0 Safari/537.36

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

Link to the challenge:
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-12strong text

You want to turn the words “cat photos” in the p element into a link. You have added a link after the p element with the text https://freecatphotoapp.com in it. You did this by wrapping the text with the a tags. Instead, wrap the “cat photos” text with a tags to turn it into a link.

please send me the answer instead i will understand automatically help me

Sorry, we don’t just give answers here. We help you figure out the answer on your own. First, I would restart the step to get the original HTML back. When you do, you should see the “cat photos” link you created below the p element:

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

This is a “cat photos” link. You turned the words “cat photos” into a link by wrapping it in a tags. You will do the same thing to the words “cat photos” in the p element. You can add a tags inside of a p element.

1 Like

Mod Edit: SOLUTION REMOVED

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.