Learn HTML by building a Cat Photo App- Step12

I’m struggling with step 12 as I cannot see the problem with my code.

See more cat photos in our gallery.

please share your code

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

can you share whole code

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more<a href="https://freecatphotoapp.com"> cat photos </a>in our gallery.</p>
      <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>

remove extra space from your text cat photos and closing tag of a.

i tried that and it’s not working instead it gave me another error, plus those that spacings are made by just clicking space bars once.

image
remove space between this

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

when I remove the space it still gives me error, at this point I don’t know what I’m doing wrong.

where is your closing p tag?

Sorry, your code does not pass. Keep trying.

The link’s text should be cat photos. You have either omitted the text or have a typo.

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

here’s the full line.

give one space between see more text and opening a tag

image
in this after text before a opening tag

thank you it works.:heart:

2 Likes

I already submitted the right code and still getting error said " The link’s text should be cat photos . You have either omitted the text or have a typo"

Blockquote

See more cat photosin our gallery.

image
you should add a space between this.

thankyou it wo :heart:rks!

In the future please create your own topic instead of using another users

you can follow these steps to make your own topic for a challenge

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like

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