Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I have tried everything I could and I still can’t figure out what I have done wrong. Please help.

Your code so far

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

<!-- User Editable Region -->

  <p>See more <a href="https://freecatphotoapp.com">cat photos<a/> in your 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to our community!

Take a look at the closing anchor tag. You have put the forward slash after the letter ‘a’.

1 Like

your a closing tag syntax is wrong

THE PROBLEM IS WRONG CLOSING TAG
<p>See more <a href="https://freecatphotoapp.com">cat photos**<a/>** in your gallery.</p>

WRITE LIKE THAT

</a>

Hi there, please only post hints or tips here without posting coding solutions when responding to someone on the forum. I have edited your post to remove the solution.

Thank you , I fixed it . It still does not work.

You have changed the text in the paragraph element.

It is supposed to be our gallery and not your gallery.

1 Like

Hey See here the exact p tag given below.

See more cat photos in our gallery.

Match Your Ones.

1 Like

It worked! Thank you for your help.

3 Likes