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

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p><a href Click here to view more cat photos.</p>click here to go to cat photos></a>
      <a href="https://freecatphotoapp.com">click here to go to 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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

1 Like

hello I can’t link the anchor (a) to the cat photo

The exercise needs you to be exact when writing the text.
They asked for this text
link to cat pictures

click here to go to freeCodeCamp.org

And your text was

The first 5 words are correct. The last one is not.

thank you. i just tried it doesn’t work

What did you try? Please post your new code.

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

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

And the instructions tell you that the link text must be click here to go to freeCodeCamp.org? I do not think that is correct.

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

above told me to write click here to go to freeCodeCamp.org

I don’t quite understand where and what to write

You should read the instructions I highlighted and follow them.

thank you very much it remains difficult as I do not speak English I translate into French; I’m going to try

Oh yes so so sorry! I did tell you the wrong text!

no problem thank you for taking the time to answer me

1 Like

I tried I can’t understand where to put the anchor

please click the reset button
then the following code will show this:
<a href="https://freecatphotoapp.com"></a>

You must write the text between the opening and closing tag
<a href="https://freecatphotoapp.com">put the text here</a>

Just remove 7th and 8th line.
And add this line
Mod Edit: SOLUTION REMOVED

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

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>
      <a href<!-- TODO: Add link to cat photos --></a>
      <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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge: