Learn accessibility by building a quiz step 44

I keep getting the error message:

"Sorry, your code does not pass. You’re getting there.

Hint

You should wrap the a element around the existing text freeCodeCamp."

but, I think I am doing exactly that.

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

Is there a problem I am not seeing?

When you post a thread for help always include all of your raw code and link to the lesson.

ok. Sorry about that. no link

The issue might be the space between the a element and the text.

Try to delete the space so it turns out that there is only a line of code

Something like this maybe

<a href="abcd.com">abcd</a><br />

Thanks for your help. I fixed it. I just reset it and typed it over. Maybe there was just a slight error I wasn’t seeing. Starting from scratch helped in this case.

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