Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I am having trouble linking “cat photos.” The explanation was vague and I’ve lost my mind over it through a lot of complications, so I could use a bit of clarification to save my sanity.

Your code so far

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

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <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 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

this is the anchor element. to work it needs text inside, between the opening and closing tag.

This is the sentence, the words cat photos in this sentence should become the text of the anchor element, but you should not move or write somewhere else the words, you should add the anchor element in the sentence

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