Working on survey form

Tell us what’s happening:
I am in Chrome working on the survey form and I am missing the green hamburger sign. I have checked my Chrome cookies settings - again, so am I missing something else? A different copy paste item? Thanks

Your code so far
https://codepen.io/juligrossman/pen/rNOjaWz
Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15.

Challenge: Build a Survey Form

Link to the challenge:

Hi @juliakajill!

What I see from your code is you have an incomplete survey form. You need to complete all the “user stories” in order to pass the test.

Before you jump back on code, please go to settings in codepen.io < js and paste the following link. It will help you to look for the mistakes, you are doing.

https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js

Thanks.

I have that link copied and pasted in my html at the top. I just started my survey and know it is not near completion, but I am missing the hamburger code (have already checked Chrome and added codepen.io) so that I can run the tests. How can I get my hamburger menu on (it’s not be there from beginning)?

You can’t just put a link to a script on the page like that. It needs to be on a <script> element.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

Or better yet, do what @eklavyasharma said and add it to the pen Settings.

Click the Settings button > Go to the JS section > paste the link in one of the bottom boxes.

Just don’t add it to both the HTML and the settings, do one or the other.

Will this make it so every time I start a new pen it adds this script that has the hamburger menu and allow me to run the tests? Would I need to delete this link if not doing free code camp challenges?

I added what you said to the JS settings and it seems to be working. Thanks

1 Like

Not necessary, this script applies to the only code you are working on.