Learn HTML by Building a Cat Photo App - Step 12

hey team i just started the lessons a few days ago,i need support on step 12 to generate the code for step 12,thanks

<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.</p>
      <a href="https://freecatphotoapp.com">link t >

<!-- 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36

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

Link to the challenge:

You’re trying to turn the words ‘cat photos’ into a link?
You’ve edited the wrong line of code. I would reset the step and start again.
To turn text (which is within an element) into a link, you just enclose the relevant words in anchor tags.

EXAMPLE:

<p>Please click <a href="example.com">here</a> to visit my awesome website</p>
1 Like

thanks so much @igorgetmeabrain