Hi all, please tell me what I am doing wrong with this.
Make the text freeCodeCamp.org into a link by enclosing it in an anchor (a ) element. The href attribute should be set to https://www.freecodecamp.org .
<p>
No Copyright -
<a href="https://www.freecodecamp.org">freeCodeCamp.org</a>
</p>
The hint given states: After nesting the anchor (a ) element, the only p element content visible in the browser should be No Copyright - freeCodeCamp.org . Double check the text, spacing, or punctuation of both the p and nested anchor element.
Hi @ ashdisan, and welcome to the forum!
Check the text above the area where you can edit your answer - have you, by any chance, duplicated the opening tag of your p element?
When I remove that opening tag, your code passes for me.
Just for future reference - when you want to post a question in the forum, you can do that by clicking the Ask for Help button located on the challenge.
That will create a new topic with all your code and it also includes a helpful link to the challenge.
You’ll still be able to ask your question in the post before submitting it to the forum.
You’re amazing for pointing this out! Thank you very much! Thanks for the extra tip as well! 