Learn HTML by Building a Cat Photo App - Step 12

what’s the answer of this Stage 12. I’m tired trying

Your code so far

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

<!-- User Editable Region -->

      <p> <a>cat photos</a> </p>
      <p>I think <a href="https://freecatphotoapp.com">freecatphotoapp</a> is great.</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/120.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @silvernewsng . I understand how you feel right now but, I’m here to help! (or try at least)

First off, why don’t you reset the stage. You should have something that looks like this:

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

Step 12 asks you to turn the words cat photos into a link by adding opening and closing anchor (a ) tags around these words. Then set the href attribute to https://freecatphotoapp.com

All you have to do is wrap the words “cat photos” in an anchor element. It should look something like this.

<p>Ask questions at the <a href="">forum</a> if you're stuck!</p>

Remember, only change what the step asks you to change and nothing else!

Good luck! You can do it!!

1 Like

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