Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I am stuck here. Can anyone help me please???

Your code so far

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

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
       Everyone loves < https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg = cute cats> cute cats online! 

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Hey Buddy, Can you please describe at which part of code you are stuck ?

And what problem are you facing ?

Hope You Understand and will describe your problem soon.

The part from “Everyone loves”…

is it step 7 or step 14?

i checked. it’s Step 14…

Hi @snakesnakehiss

You can use the other anchor element in the editor as a guide to structure your code.

  1. the a tag is missing
  2. you need the href attribute, the attribute value needs quote marks
  3. removing anything extra after the href attribute property and value
  4. the paragraph element is missing from your line of code.

You could reset the step to restore the seed code and try again.

Happy coding