and it gives me the hint of
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.
but i dont under stand where to place the no copyright part and im guessing what i have so far isnt right either
I tried to copy and paste everything but for some reason on here what i type only shows up as one link saying freecodecamp.org and then i tried to do it differently and said new users can only post 2 links. Ill try and take a picture now and see if i can post it
Does not meet that criteria. Try reading the instructions for the challenge and see what it asks for. You will need to nest an <a> tag inside of a <p> tag.
hey I’m having the same exact issue as you, I nested the anchor inside of the
& I’m still getting the error of …
“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.”
here’s my code <p>No Copyright - <a href="https://www.freecodecamp.org"> freeCodeCamp.org</a></p>
Odd, well heres my soluton: No Copyright - freeCodeCamp.org
| No Copyright - <a href="https://www.freecodecamp.org">freeCodeCamp.org</a>
Tho idk if adding <p> tags would mess up anything:
Edit: Yep!
Hint
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.
This feels like bad practice but there should never be plain text thats never in a element.