Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

why my P element is fault, please help me. And teach me why i fault it.

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</p>
     <p>See more cat photos in our gallery. <a href="https://freecatphotoapp.com">cat photos</a> See more cat photos in our gallery.</p>

<!-- User Editable Region -->

      <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/125.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

All the tasks that you are supposed to carry in this step do not involve making new elements and text. Use what is already provided, you have the p element, so, you do not need to create a new one. You have the text cat photos nested in the original p element, therefore, you do not need the new text you created.

Hey buddy, you did it right.

But you no need to add another word cat photos but

kindly convert the existing
word in p tag into an anchor tag

Hope you understand !!

1 Like

Bro, thank you so much.

1 Like

can u bold where’s i fault, because i never correct the codes.

See more ***cat photos*** in our gallery.

you had to use the anchor element only on the `Cat Photos` words.
2 Likes