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 -->

<!-- User Editable Region -->

      <p>See more cat photos in our gallery.<a href="https://freecatphotoapp.com">cat photos</a></p>
      <a href="https://freecatphotoapp.com">cat photos</a>

<!-- User Editable Region -->

      <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 (Linux; Android 12; 220333QAG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Mobile Safari/537.36

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

Link to the challenge:

Turn the already extant words “cat photos” into the link. You don’t have to add extra words.

Reset the task. Then wrap an anchor element <a href=" value goes here"> text goes here </a> around the text as instructed.
I hope this helps.
Thank you.

1 Like

Can you explain it again ??
I didn’t get it.

1 Like

I’m completely lost. I’ve been working on this step for a couple days and have tried everything mentioned. Thanks for any help provided.

First you’ve got to reset the task. The instruction wants you to make the text cat photos into a link.
You need to warp an opening anchor tag <a> and a closing anchor </a> tag around the text cat photos
Before the text cat photos, there has to be an opening anchor tag <a>, and after the word photos, there has to be a closing anchor tag </a>