Learn HTML by Building a Cat Photo App - Step 12.Itsays to change the word catphotos in p element to link https://freecodecamp and then removing the old anchor

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 -->
    <a href="https://freecatphotoapp.com">cat photos</a>
    <a href="https://freecatphotoapp.com">cat photos</a>
    <p>Click here to view more <a href='https://freecatphotoapp'></a>  .</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 (Linux; Android 8.1.0; Infinix X623) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36

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

Link to the challenge:

I think you need to restart the step to get the original HTML back because you’ve made way more changes than are needed. Yo do not want to remove any of the current text from the p element. You only want to turn the words “cat photos” in the p element into a link. You have already done this with the words “cat photos” below the p element. You did this by adding the appropriate a tags around those words. You will do the same thing to the words “cat photos” in the p element.

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