Hi guys, i'm stuck here. However, I checked on the solution and I'm right. Thank's

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

  **Your code so far**

<body>
<header>
  <h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<article>
  <h2>Defeating your Foe: the Red Dot is Ours!</h2>
  <p>Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightning speed. But chin up, fellow fighters, our time for victory may soon be near. Click here <a href="">for  information about batteries </a></p>
</article>
</body>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36

Challenge: Give Links Meaning by Using Descriptive Link Text

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

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

Also, the more information you give us, the more likely we are to be able to help.

Hi , i’m french so sorry for my bad english.
I’m stuck at this stage here.
However, I checked the solution and it seems to be the right answer I don’t understand.
Thank you very much

Look here and compare to the failing test:

Your code should move the anchor a tags from around the words Click here to wrap around the words information about batteries

You have "for information about batteries " instead of "information about batteries" as your anchor text.

1 Like

Thank you for your answer. I have just made the change but even so, it does not want to work.

What is your new code?

<body>

  <header>

    <h1>Deep Thoughts with Master Camper Cat</h1>

  </header>

  <article>

    <h2>Defeating your Foe: the Red Dot is Ours!</h2>

    <p>Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightning speed. But chin up, fellow fighters, our time for victory may soon be near. Click here for <a  href=""> information about batteries</a></p>

  </article>

</body>

I’ve edited your post 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 (’).

It looks like you have an extra space before ‘information’.

1 Like

Oh great , indeed that was it. Thank you a lot :grinning:

1 Like

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