Learn HTML by Building a Cat Photo App - Step 10

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

i’m stock in building a cat photo step 10

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photoSee more cat photos in our gallery</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/116.0.0.0 Safari/537.36

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

Link to the challenge:

I would suggest resetting the lesson.

Here is the starting code again

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

The lesson wants you to add an anchor element below the paragraph element.
You should not alter any of the existing code on the page

 <p>See more cat photos in our gallery.</p>
ADD ANCHOR ELEMENT HERE

here is the basic syntax for the anchor element

<a href="some-link-here">anchor text goes here</a>

hope that helps

2 Likes

Hello!

@jwilkins.oboe always provides great advice and examples. If you follow her guidance, you will pass the step.

Happy coding! :slight_smile:

2 Likes

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