Step 11 (a) element. What am I doing wrong?

Tell us what’s happening:
I don’t understand how to do the step. I tried multiple times and Resarted the step. And now I’m stuck.

  **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>
    <a href="https://freecatphotoapp.com"></a>
    <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 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36

Challenge: Step 11

Link to the challenge:

Hi @abigailmc570 ,

Look at the example given :

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

click here to go to freeCodeCamp.org is the anchor text.

Now, look at your code :

You need to have some text as the anchor text (between the opening and closing a tags).

Ok thank you that really help

1 Like

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