I think I should eliminate the word "cat photos" but this is wrong 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">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/101.0.4951.67 Safari/537.36

Challenge: Step 12

Link to the challenge:

What is the exact problem you are having?

Ok I see your problem, it’s asking you to turn the words cat photo into a link.
so you would need to add the anchor link after the word more and for the text in the anchor tag it would be cat photos

then delete the anchor link underneath the

tag that you have currently

it says that i have to remove " Turn the words cat photos located inside p element into a link using the same value for the href attribute as the link below the p element. The p element should show the same text in the browser, but the words cat photos should now be a link. Make sure to remove the a element with the text cat photos on the line below the p element."

<p>Click here to view more <a href="https://freecatphotoapp.com">cat photos</a></p>

this would be the code you need to type inside the

element then delete the anchor element you have currently thats under the

element

2 Likes

the code above is what you would use in the paragraph tag , which turns the words cat photos into a link. then make sure the anchor link that is below the paragraph tag is deleted, I hope im explaining it clear for you to understand me and that im not confusing you

1 Like

thank you!!! the true is dificult to understand this topic ,I apologize for disturbing you so much, thanks a lot, i believe that i will be asking you

no problem! We are all here to learn, Im still a newbie myself helping out where I can lol glad I was able to assist you.

1 Like

Thank you sooo much!!This helped me :slight_smile:

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