Learn HTML by Building a Cat Photo App - Step 12

Hi, I just started my coding journey and am stuck on step 12 I’ve tried multiple times but can’t seem to understand the steps or write the code right. What am I missing?

Your code so far

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

<!-- User Editable Region -->

      <p> Click here to view more <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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the community @cood3994 !

The below provided example for this step read:

<p>I think freeCodeCamp is great!</p>

before the anchor was added to it to turn freeCodeCamp into a link.

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

Notice how when the anchor has been added, nothing in the p statement has be changed, deleted, nor added.

Only the anchor with its href has been added to touch freeCodeCamp on both sides to create the anchor.

I suggest using this example to turn cat photos into a link in the current p element statement.

Please remember to use the href and the value provided in the instructions in the opening anchor tag?

Happy coding! :sun_with_face:

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