Https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text

<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 lightening 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>

This appears to be right, but it’s not passing.

You added a period in the end, just remove the “.”

1 Like

Thanks very much for your help

Without “.” even it does not pass the test. Is there bug?

without seeing your code we can’t answer

Here it is:

<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 lightening 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>

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

Found an issue, text in

tag had indentation so it was giving error.
Thank for reply though!