Learn HTML by Building a Cat Photo App - Step 11

Tell us what’s happening:
Describe your issue in detail here.

Your code so far
an anchor (a) element. For example, <a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a> is a link with the text click here to go to freeCodeCamp.org.

Add the anchor text link to cat pictures to the anchor element. This will become the link’s text.

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>

<!-- User Editable Region -->

      <a href="https://freecatphotoapp.com"></a>
      <a href="https://freecatphotoapp.com"> link to cat pictures</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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47

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

Link to the challenge:

i am failing to complete code lesson# 11 as instructed below:
an anchor (a) element. For example, click here to go to freeCodeCamp.orgis a link with the textclick here to go to freeCodeCamp.org` .

remove the first link ,
you were ask to add a text in the link as you did in the second ,
and when you remove thet first one, the test will pass…

1 Like

going to try and let u know whether i pass or not.

1 Like

it dint work .
the task no. 11 was given as below:

A link’s text must be placed between the opening and closing tags of an anchor (a) element. For example, <a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a> is a link with the text click here to go to freeCodeCamp.org.

Add the anchor text link to cat pictures to the anchor element. This will become the link’s text.

anchor text were

could u pls
help me to pass the code

try to reset the lesson
and add the text in the midlle of the (a) link to cat pictures

3 Likes

Follow @zaklina advice and you should pass.
In addition make sure not to leave any white spaces between your a tags and the text:

Hope this helps!

3 Likes

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