Applied Accessibility- Give Links Meaning by Using Descriptive Link Text

Tell us what’s happening:
I followed everything but it keeps telling me "Your code should move the anchor a tags from around the words “Click here” to wrap around the words “information about batteries”.

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 5.1; rv:52.0) Gecko/20100101 Firefox/52.0.

Challenge: Give Links Meaning by Using Descriptive Link Text

Link to the challenge:

You have an extra space before “information about batteries”
/Jakob

1 Like

Information about batteries

1 Like

The hashtag that you used here’#’ is an id selector used to target a single specific element with a unique id
so i think you shouldn’t put the hashtag sign there ,the only thing i had to do was to remove the space in front of information about batteries to solve the challenge.

1 Like