Build a Cat Photo App - Step 14

Tell us what’s happening:

my code not working in step 14, what should i do.

Your code so far

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

<!-- User Editable Region -->

      <p>Everyone loves cute cats online! <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"> cute cats.</a></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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 14

Hi,
TARGET attribute is missing in the second P element. Add the target element to the anchor’s element opening tag.

Happy coding.

that’s not needed in this step…

you would need to add the anchor element around the existing words, do not write the words again

you can use as example the p element with an anchor element inside you created in the last few steps

Thanks for the correction. I mistaken the question for step 15.