Learn HTML by Building a Cat Photo App - Step 11

Tell us what’s happening:
Describe your issue in detail here.
i need your help for this code
Add the anchor text cat photos to the anchor element. This will become the link’s text. i don’t know how to do this in this code

Your code so far

<html>
 <body>
   <h1>CatPhotoApp</h1>
   <main>
     <h2>Cat Photos</h2>
     <!-- TODO: Add link to cat photos -->
     <p>Click here to view more cat photos.</p>
     <cat photos> <a href"https://freecatphotoapp.com" ></cat photos>
     <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 11

Link to the challenge:

What part of the instructions or hints is confusing for you?

Your code doesn’t look like the example

<a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a>

cat photos is the anchor text. The text goes between the <a> and </a> part of the a element.

Example:

<a href="https://www.freecodecamp.org">This is the anchor text</a>

Outputs:

This is the anchor text

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