Learn HTML by Building a Cat Photo App - Step 12

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

Hej !,

i have roblem with step 12, i dont know why but it dosen;t works

Test

Sorry, your code does not pass. You’re getting there.

Hint

The link’s text should be cat photos. You have either omitted the text or have a typo.
Your code so far

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

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

Link to the challenge:

hello,

It looks like you have removed some words that are needed by this step, so first, please click on the Restart Step button to reset the code to the initial point.

After this, take a look at the preview pane. It probably contains this sentence:

Click here to view more cat photos.

And at the start of this exercise, this sentence is not a link.

The objective of this exercise is to turn the last 2 words into a link so that in the preview pane they appear blue similar to below:

Click here to view more cat photos.

To make this effect, you will need to use an anchor tag.
Recall that an anchor tag consists of an opening tag and a closing tag.
Place the opening anchor tag to the immediate left of the word cat.
Place the closing anchor tag to the immediate right of the word photos.

Try the above and hopefully you will move forward.

I fix it , thanks :slight_smile:

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