Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here. I seem to be lost on the anchoring, it made sense when i was anchoring outside the

but once it was combined the clarity was lost.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p> <a "click here to see more cat photos" href="https://freecatphotoapp.com"> cat photos </a></p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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/108.0.0.0 Safari/537.36

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

Link to the challenge:

You have added the opening and closing a tags around the words cat photos but you did something weird with the rest of the sentence (you moved it inside the opening tag). Basically, you don’t want to change any of the text in the original sentence. You only want to add the opening and closing tags around cat photos.

You might want to restart the step to get the original HTML back. Don’t move any of the text. Just add the opening and closing tags where they belong. Also, don’t put any extra spaces inside of those tags. The only text that should be inside the tags is “cat photos”.

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