Learn Accessibility by Building a Quiz - Step 44

Tell us what’s happening:

On line 114 i have wrapped the a element around the text and added the link the link using href, yet it still says I have done it wrong, the hint says I should wrap the a element around the existing text but I have done that, not sure where I have went wrong.

Your code so far

<!-- file: index.html -->
<!-- User Editable Region -->

    <footer>
      <address>
        <a href="https://freecodecamp.org">freeCodeCamp<br /></a>
        San Francisco<br />
        California<br />
        USA
      </address>
    </footer>

<!-- User Editable Region -->
/* file: styles.css */

Your browser information:

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

Challenge Information:

Learn Accessibility by Building a Quiz - Step 44

you wrapped up the br in the anchor element.
Just move it to the right - outside of the anchor

Hi there. The directions want you to wrap the a element around the text freeCodeCamp only. Not the br element. You see the br element is used to represent a new line. It’s improper to wrap clickable elements and image elements around it.

Hope this helps.

Hey Buddy , This br tag should be after your closing anchor tag .

Hope You will definitely change it.

Happy Coding :innocent:

Thank you for helping me, i was genuinely stuck on that for like a hour lol

1 Like