Give Links Meaning by Using Descriptive Link Text closing tag?

Tell us what’s happening:
alright what am i doing wrong on the closing tag? Make sure your a element has a closing tag.

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. Click here for <a>information about batteries</a> </p>
  </article>
</body>

Your browser information:

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

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

your <a> need an href=""
like this:

Click here for <a href="">information about batteries</a>
1 Like

@Bastienne thanks missing the simple stuff. thank you

I have the same problem. focussing to hard on the hard stuff and in the end finding the sollution in the easy stuff like typo’s or missing ;
Next time you could reset the lesson and read it all over, that’s what helps me kind of a ctrl alt del in my mind. of the shft F7 -> save -> no.

1 Like