Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
help in line 9 can’t figure it out

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more </p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>
      <a herf="https://freecatphotoapp.com"> <p>cat photos <p></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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

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

Link to the challenge:

What can’t you figure out? What part of the instructions or hints is confusing? Are there specific words or phrases you don’t understand? (please don’t copy paste the instructions - I can already read them)

this is what i gotta do: In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words.

I know what the instructions are. I don’t know what you don’t understand about them.

Do you know what an HTML element is?

Do you know what a p element is?

Do you know what an anchor element is?

Do you know where the words ‘cat photos’ are?

Do you know how to use an anchor element to create a link?

I can give better help when you are specific about what you don’t understand.


It looks like perhaps you don’t know what a p element is?

The p element is where the words ‘cat photos’ were originally. That’s where your new anchor is supposed to go, not below the old anchor.