Learn HTML by Building a Cat Photo App - Step 12

I cant understand what to do in this level.
I tried making a link saying cat photos as they said but it told me the link cat photos should not show up

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>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- 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/109.0.0.0 Safari/537.36

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

Link to the challenge:

1 Like

Great job! I think the issue you are having here is that it is not exactly like the example they give you. Double check spacing and punctuation referring to the example. Otherwise it looks okay to me.

Hello and welcome to the community!

This step wishes us to anchor the words cat photos while they remain within the p element sentence.

Here is the example from the step instructions to help better understand how to do it.

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

As well, I am including a great article from freeCodeCamp news that has both good guidance and examples for both text and images being turned to links.

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