Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I have been stuck on Step 12 for several hours and would like some help.
Your code so far

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

<!-- User Editable Region -->

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

<!-- 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/111.0.0.0 Safari/537.36

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

Link to the challenge:

1 Like

compare this with the last anchor element you wrote:

This new anchor element should be just like the last one you wrote, but with the text cat photos as the link instead of link to cat picture.

1 Like

Ok, thanks.

Now how do I get the curriculum to go back to where I can continue the lesson?

1 Like

I don’t understand what you mean? You should be able to go back to the Step you were on and submit your updated answer.

1 Like

The page looks like this:

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos 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>

and I can’t get it to go back to where I can type in my answer and submit it.

1 Like

You don’t see anything at all on the page except for the starting code? No instructions or buttons?

No, I see nothing else.

I’ve tried reloading the page and even went back and redone Step 11 thinking that might reset Step 12 but it didn’t.

I would reset your browser cache

1 Like

That worked! Thanks so much for your help.

1 Like

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