Sorry, your code does not pass. Keep trying. Hint Your code should only contain one anchor (a) element. Remove any extra anchor elements

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

Please provide a link to the challenge and ask a question.

<a href="Click here to view more cat photos"</a>

Does that look right to you? Is that a valid url? Are you perhaps missing a closing angle bracket (>)?

1 Like

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