Learn HTML by Building a Cat Photo App - Step 12

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

  **I can't understand this step 12

what is the old anchor?**

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
   <p> Click here to view more cat photos.<a href='https://freecatphotoapp.com'>Cat photos</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 (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:

This step is asking you to turn the words “cat photos” in the sentence in the p element into a link. You have actually already done this when you created the “cat photos” link below the p element. Restart the step to get that link back. You will see

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

What you did there is turn the words “cat photos” into a link by wrapping them in the appropriate a tags. This is exactly what you want to do to the words “cat photos” in the p element. The only difference is that the words “cat photos” in the p element are in a sentence instead of by themselves. But that difference doesn’t matter. You would still turn them into a link the same way.

if you don’t mind coding this

I can’t code this. If you help me to making this that will be very helpful for me.

Actually, we don’t write your code for you here, we help you write it. Did you restart the step? Do you see the “cat photos” link you created below the p element? You want to do the same thing to the words “cat photos” in the p element. You can put a tags inside the p element.

Please ask a specific question about what you don’t understand.

Thank you so much.
I’ve done this

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