Learn HTML by Building a Cat Photo App - Step 12

can someone help me please!

Your code so far

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15

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

Link to the challenge:

hi there, you don’t have proper anchor tags at the moment.
perhaps you should review how to write a proper anchor element in step 10 and 11.
You can also review this post after this if you need more help

thank you so much for this insight. what confuses me is that there is already anchors in place. is the test asking me to place the existing anchors In the correct spot or add two more? that’s what’s confusing me is that there is already anchors in the code

If you reset the code (click the button that looks like an arrow turning), you will see a paragraph element
<p>Click here to view more cat photos.</p>
This is where your new code should go. (all on this line)
The objective is to turn the words cat photos into a link.
So hopefully you learned how to do this from step10/11

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