Learn HTML by Building a Cat Photo App - Step 12

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

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 cat photos. <a href='https://freecatphotoapp.com'></a>cat photos</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/106.0.0.0 Safari/537.36

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

Link to the challenge:

1 Like

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!

1 Like

Hello, sorry
I have this error :c
Impossible, i change all sentences and same fail.
Also i want give 5$ by paypal but i have problem with my paypal account :c

I love this website but i am just blocked :c
I go to sleep
Seeya
:slightly_smiling_face:
Thanks a lot for u time and try to help me :smiley: thanks bro.

Test

Sorry, your code does not pass. Don’t give up.

Hint

You should nest a new anchor (a) element within the p element.

the code you have here is not going to actually create any links.
Take a look at the preview pane to examine the change you have made. It probably appears like below

Click here to view more cat photos. cat photos

What they actually want you to do though is this:

Click here to view more cat photos.

Notice the how I didn’t add any words? And that the last 2 words from the original sentence are blue. This is an illustration that these words are a link.

You want to use the anchor tags to make the two existing words cat photos into a link (do not add any extra 'cat photos" as these words are already there)

Make sure your opening anchor tag is on the left of the word cat and
make sure your closing anchor tga is on the right of the word photos

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