I need help with finalizing tribute page

Tell us what’s happening:
Hi, to my view the page is complete , but I’m not sure how I can get a feedback or approve whether what I’ve done is enough or not.

Your code so far

Your browser information:
This is my link: https://codepen.io/Forest21/pen/abOXOex
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

you need to include the provided test suite in your project to know if you pass all user stories

Hi @maeforest, as stated keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>).

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

If you’d like the community to give you feedback on your project you can open a new topic in the ‘Project Feedback’ forum and ask for feedback.

2 Likes

Hi Farhad,

You need to include the test script in your code in order to be able to see what is still needed to be completed or fixed.

Here is the script for you:

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

You can add this script anywhere in your HTML section on Codepen but I recommend adding it just before your closing tag. That way your page will load before the script is loaded.

I had a look at your code you shared and I see that you did add the test script but it’s not added correctly to the document:

Screen Shot 2020-03-31 at 14.23.45

I added the code to your document to be able to see the tests and also to see if you pass any tests.

You’ll see a hamburger menu (three green stripes) on your HTML output if added correctly.

You can then click on that menu and run the tests to see what is working and what isn’t. If you click on the red tests score it will give you a popup of more items to fix.

Here’s your test so far:

Screen Shot 2020-03-31 at 14.29.02

1 Like