Question: Step 64
Inside the footer
, add a p
element. Then, nest an anchor (a
) element in the p
that links to https://www.freecodecamp.org
and has the text Visit our website
.
My attempt:
<footer>
<p><a href="https://www.freecodecamp.org"</a>Visit our website</p>
</footer>
Feedback: Sorry, your code does not pass. Don’t give up.
Your new a
element should be nested within your new p
element. You should have exactly one a
element.
The example you can see has no spaces, I’ve played around with spaces/no spaces between spots and just different variations going off advice from other forums, but I still keep getting a fail. Could somebody please help me out on this one?