I am being advised that I have missed the/ on the end anchor element, but I am certain that this is correct!
‘Your anchor (a
) element should have a closing tag. Closing tags have a /
just after the <
character.’
My code reads:
No Copyright - freeCodeCamp.org
I cant paste the code as am getting the
Can you please provide a link to the challenge you are on?
In the challenges, if you use the “Help” button after a few tries, it will directly link to this challenge so that we know what challenge you’re on and the instructions for that specific challenge.

Step 64
Turn the existing freeCodeCamp.org
text into a link by enclosing it in an anchor (a
) element. The href
attribute should be set to https://www.freecodecamp.org
.
The error I am getting reads: Your anchor (a
) element should have a closing tag. Closing tags have a /
just after the <
character.
The end of my code reads: freeCodeCamp.org
When you go to paste your code, use the </> button on the editor on this page to turn the code into a code block.

2 Likes
<footer>
<p> No Copyright - <a href="https://www.freecodecamp.org"> freeCodeCamp.org </a> </p>
</footer>
The challenges are very specific with what they require, unfortunately. You have a space right after the beginning <a> tag (before the “freeCodeCamp.org” in the middle) and then a space right before the </a> tag that is causing the challenge code to not accept the answer.
Just remove those two spaces inside of the <a> element and it will pass.
<footer>
<p> No Copyright -<ahref="https://www.freecodecamp.org"> freeCodeCamp.org</a></p>
</footer>
Sent you a private message so that we wouldn’t drag this forum post on and on.