Learn HTML by Building a Cat Photo App - Step 12

It’s back to step 12 again.

I seem to be struggling on this topic and I do have the code for people to view this time.

Could i have to help and advice on this one please.

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

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

You have mixed together the syntax for the p and a elements. This is not what the challenge is asking for.

This is the original code:

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

The challange wants you to replace the words ‘cat photos’ on the first line with the full anchor element on the second line.

Ok, thank you for the help today.

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