Learn-basic-css-by-building-a-cafe-menu/step-64

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?

Please post a link to the Step. Your title and post contents don’t agree

Sorry, my bad I have just updated the title

I have worked it out! For any users reading this in the future, the link text needs to be within the “a” closing anchor. Hope this helps!

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