Responsive Web Design Project - Build a Survey Form

Tell us what’s happening:
I don’t understand the last part that said “Or you can use this CDN link to run the test in any environment you like”

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36.

Challenge: Build a Survey Form

Link to the challenge:

It means you can add script tag with a src attribute set to https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js. This will link your app to the tests.

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

@salakoNBA, you have a couple of ways of doing the projects.

  1. You can build your project in codepen by clicking on the link provided to fork the codepen pen. When doing this, the test script is already set in the HTML section of codepen.
  2. If you decide to create the project somewhere else (an IDE on your box, repl.it, codesandbox, etc) the you’ll want to copy that CDN link and put it right before the closing body tag. This way you’ll be able to run the tests to ensure that the FCC user stories are met.

The test script should be included, with all tests passing, when you submit your projects.