Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I seem to be hitting the post with some sequences lol!
Your code so far

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

<!-- User Editable Region -->

      <p><a>See more cat photos in our gallery <a href="https://freecatphotoapp.com"
     >link</p></a>
      
            
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">

<!-- User Editable Region -->

    </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/115.0.21984.171 Safari/537.36 Avast/115.0.21984.171

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

Link to the challenge:

You should not delete anything that is already there. I would restart the step to get all of the original HTML back.

You already created a link below the p element:

<a href="https://freecatphotoapp.com">link to cat pictures</a>

Do you see how you turned the words “link to cat pictures” into a link by wrapping them in an anchor element? That’s how you turn anything into a link. So you want to do the same thing to the words “cat photos” in the middle of the p element. Remember, you only want the words “cat photos” to be in the link, so you only want to wrap them in an anchor element and nothing else.

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