Learn HTML by Building a Cat Photo App - Step 12

Currently I am trying to execute the code but it isn’t going in.

Click here to view more cat photos.

What can I do to make it valid?

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

<!-- User Editable Region -->

      <p>Click here to view more <a href="https://freecatphotoapp.com">cat photos</a>.</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/112.0.0.0 Safari/537.36

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

Link to the challenge:

Welcome to our community!

The sentence between the ‘p’ tags is different:

<p>See more cat photos in our gallery.</p>

Let me give it a try.

So, it shouldn’t be “Click here to view more”?

This is what you should get in the step 12:

That’s just the default text. How do I make it work because I did everything I could to run but it isn’t working.

Nevermind, I ended up solving the problem

edit: what ended up happening is that I forgot to add href then the equal sign and the url. Everything else stays the same. Thank you for helping me, though.

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