Wrapping the anchor around text

i am 100% certain i have done this right, however it keeps saying i need to wrap the anchor around the text, which i think i have done.

  **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 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/88.0.4324.182 Safari/537.36 Edg/88.0.705.81.

Challenge: Give Links Meaning by Using Descriptive Link Text

Link to the challenge:

Define 100%. :wink:

Right, the instructions say:

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

Notice that there is not period in “information about batteries” - it comes after. There was also none in the original code.

That may seem very nitpicky, but the world of web dev often is. Unit tests like this are often very strict. “Close enough to me” isn’t the same thing as passing the test.

When I fix that, the code passes.

Thanks so much I have removed the full stop :slight_smile:

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