Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
I don’t really know what am I doing wrong. Can someone please help me? They’re asking me to do this:

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.

Your code so far

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

Your browser information:

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

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

Link to the challenge:

You turned the entire p element into a link. You only want to turn the words cat photos inside of the p element into a link.

I’m sorry, but I don’t understand your answer.

Can you explain a little more about what you don’t understand?

If I put the cat photos only, in the link, then the link wouldn’t work.

I understood your answer like this:

href =“https://freecatphotoapp.com”<a

Click here to view more cat photos.

Look at the “link to cat pictures” link you have already created below the p element. You wrapped the words “link to cat pictures” with an opening and closing a tag. You would do the same thing to the words “cat photos” inside the p element to make them a link. You can put an anchor element inside of a p element.

1 Like

Ahhhh. Wow. Thanks a lot. Really appreciate it. Have a wonderful day.

:hugs:

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