Code Issue/Give Links Meaning by Using Descriptive Link Text

Tell us what’s happening:
Directions tell us to move the tags to from “Click on” to “information about batteries”. Can’t do it without disconnecting the href. All the combinations I used to move the tags and incorporate the href did not pass the test.

Any ideas?

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 lightening speed. But chin up, fellow fighters, our time for victory may soon be near. <a href="">Click here</a> for information about batteries</p>
  </article>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15.

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

It’s easy mate,
Let’s sort it out.
You see the code has a part <a href="">Click here</a>?
Perfect, now the challenge wants you first remove the a tag for that click here text.
Next there is a text section at the end of the paragraph as information about batteries, now make it as an anchor, e.g. <a href="">Link text</a>

Feel free to ask if you need more explanation. Happy programming.