Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I’ve tried what feels like 49 different ways to solve step 14 in the cat photo app, but only seem to be getting myself more stuck. I’m confused given I’ve tried every method explained by others. Idk what I’m doing wrong

Your code so far

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

<!-- User Editable Region -->

 <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <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 (iPhone; CPU iPhone OS 17_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.8 Mobile/15E148 Safari/604.1

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

see this where you have an anchor element inside the p element?
try to do that

issues here: the openint <p> tag has disappeared, and you have duplicated the words “cute cats”. You need to use the existing words to make the anchor element

1 Like