Learn HTML by Building a Cat Photo App - Step 12

I’m unsure what the issue here is. It’s telling me to turn the words ,cat photos’’ into a link. I did that, and it keeps saying that my code is wrong.

Here’s my code.

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

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

Link to the challenge:

Hi!
Your code should look like this.

Mod Edit: SOLUTION REMOVED

Remove the opening tag of the anchor element in the start of your paragraph element instead nest only the words cat photos.

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

1 Like

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