How do I get pass challenge 12

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more<a href="https://freecatphotoapp.com">cat photos</a></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 (Linux; Android 10; TECNO CD7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36

Challenge: Step 12

Link to the challenge:

You are so close. You accidentally remove a space between the words “more” and “cat”.

1 Like

But I did add a space and still not working. Please :pray: help if you can

You’ll need to show us your updated HTML.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.

1 Like

Hello! I also got stuck here for like 10+ mins. All you need to do to pass the challenge 12 is to remove the “cat photos” in the p element that’s it. Leave the “cat photos” between in those anchor no need to change something in there.

I forgot put a href beside the p element just like in the (a) and type “cat photos” and you’re done

HI @joel.edeki !

Welcome to the forum!

This is what your code currently produces
Screen Shot 2022-06-25 at 9.25.44 PM

You see how there is no space between more and cat photos?

That is where the issue is.

Add a space after the word more here

Once you do that, then the test will pass.

Hope that helps!

1 Like

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