Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
please i am stucked at step 12 of building a Cat Photo App please i need help.

Your code so far

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

I think you might be missing a closing > on the opening a tag.

Also, you want to make the words “cat photos” a link. Right now you have not made anything a link because you don’t have any text between the opening and closing a tags.

i have also put the closing tag with only “cat photos” and yet

and looking at the preview the “cat photos” is already on blue color and the mouse has indicated that it is already a link but they keep telling me i did not pass

please how can i jump this “step 12” because i need to move on

I suggest not to jump any step as you will not learning particular concept properly.

Did you pass Step 11 ? If yes, then Step 12 is exactly same.

In IT you can’t simply give up on particular problem instead you need to keep working on it till you get the solution.

Jumping / skipping is very dangerous trend; simply avoid it at all cost

Here is what needs to be corrected,

  • your <a> tag is not closed properly
  • you have misplaced the quote (") .
  • Your a closing tag is supposed to enclose the string as well.
    The corrected version looks like this… <a href="https://freecatphotoapp.com"> Click here...</a>

thanks but this is not where i am stucked.
i am talking about step 12

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