Learn HTML by Building a Cat Photo App - Step 12

Hi everyone. May someone please assist me on this step?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>
        Click here <a target="_blank" href=https://freecatphotoapp.com"> link to see 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.35

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

Link to the challenge:

Please click the reset step button (which looks like a curved arrow).

This will reset the code back to its initial state as you have removed code that you will need.

After that take note of:

In the code right now you have a paragraph element with plain text words. In the preview pane, you can see the words look like this

Click here to view more cat photos.

What they are asking you to do is change these words as follows:

Click here to view more cat photos.

Such that the last two words become clickable.

You do this using an anchor tag (review anchor tags in step 10)

If you are still stuck pls see this post as well

And if you are still stuck then please reply here and post your updated code showing your last attempt.

Hope this helps