How To Test My Tribute Page

Tell us what’s happening:
How to test my tribite page if all the requirements are met or not?

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/69.0.3497.100 Safari/537.36.

Link to the challenge:

If you are doing it in codepen.io, you can copy the <script> from the example’s HTML section into your HTML section

https://codepen.io/freeCodeCamp/full/zNqgVx.

Unfortunately I cannot provide the script here as I am experiencing errors accessing codepen at the moment.

Good Luck!

Indeed what @kickflips says.

The script is mentioned at the user stories

You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js

so the script would be

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

place it just before the closing body tag </body>

Can I do it in codepen? I mean should I paste ` in my html section before the end of body tag in codepen?
And can you please elaborate what does it mean by “forking this code pen”?

yes paste it in codepen in the html section before the </body>

forking is another option. Then you copy the example tribute page pen made by freecodecamp. After that you can edit it. but I would recommend to paste the script in your own codepen.

1 Like

Ok, so what to do after pasting it there?

take a look at your page, there is now a menu for testing your pen in the top left. just select what you want to test and press the test button.

Please review my codepen for tribute page. There is no option of test on the top left of my page! Thank you for your support!

Remove the script tag that you have at the bottom of your page and paste this.

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

This should help.

3 Likes

Thanks. This really helped.