Descriptive link text

Tell us what’s happening:
I believe I have done the challenge correctly and checked with the video proved but I can not move on.
I have moved an anchor tag a from “Click here” to before “information about the batteries”

Your code so far
Click here for information about batteries


<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 browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text

Hi,
you’ve done well.
The only issue is the space between the opening a tag and the word “information”.

<a href=""> information about batteries</a>

If you get rid of this space,

<a href="">information about batteries</a>

you will pass the challenge.