Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I followed all the instructions but i can’t pass the step 12

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more cat photos in our gallery<a href="https://freecatphotoapp.com">cat photos</a></p>

<!-- User Editable Region -->

      <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/123.0.0.0 Safari/537.36 Edg/123.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

This is what your code currently produces

Screenshot 2024-04-16 at 3.21.08 PM

You want your code to produce this correct result
Screenshot 2024-04-16 at 3.21.41 PM

Update your code so cat photos is the link and is in the correct spot.

Once you fix that, then the test will pass

If you need more help, take a look at the example code they gave you here

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

then compare it with what you were trying to do and see what you need to fix so it is correct

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