Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

I have tried carrying out the instructions and it seems like i am not getting it, can someone please explain to me in light terms

  **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/103.0.0.0 Safari/537.36

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

Link to the challenge:

Hello.

So, this step might be a bit confusing to understand at first. What they ask of you is to turn the text ‘cat photos’, which is inside your <p> element, into a hyperlink, that leads to the address ‘https://freecatphotoapp.com’.

In order to do this, you must nest an anchor element <a></a> inside of your <p> element, and then set its href attribute to the desired address, like you have done in the previous step. Then, simply include the text ‘cat photos’ inside the anchor element, like so:

Mod Edit: SOLUTION REMOVED

When you are done, you should remove the anchor tag you previously added below the <p> element, as it is now useless.

1 Like

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.

1 Like

I see, my apologies. I’m new to this forum and initially wanted to do just that, but I saw other replies that shared the code itself so I assumed it was correct to share it as well.

Thank you, I am actually new and I am trying out everything.

1 Like

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