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

<!-- User Editable Region -->

    </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/111.0.0.0 Safari/537.36

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

Link to the challenge:

Welcome to our community!
Restart step.
In the existing sentence surround the words “cat photos” with anchor tags. The example for how to do it, is given in the second code line in this challenge.

please i dont’t underastand

In the following example, the text is turned into a link by being surrounded with anchor <a></a> tags:

<a href="https://freecatphotoapp.com">link to cat pictures</a>

Your task is the same for the first code line in this challenge:

<p>Text <a href="url">two words</a> text.</p>

The “two words” are actually the “cat photos”.

i dont understand please tell me i new in html
The link’s href value should be https://freecatphotoapp.com . You have either omitted the href value or have a typo. this is hint given to me

Post your solution here.