CSS Tribute Page

Hello. I did the tribute page project for the Responsive Web Design curriculum and for some reason none of the tests are passing? Can anyone help me figure out what’s wrong? Here’s a link to my project.
https://codepen.io/EmeraldRaven/pen/poevywJ

You have all your HTML code in the CSS editor. Move it to where it belongs.

There will still be some tests that fail. When a test fails click the red button to see which test(s) are failing and text to help you correct the issue.

  • Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.

Side note, the image does not load because you point to the URL addr that contains the image and other info. If you want to use that image then click on it and then select “copy image addr”. That’s the addr you’ll need to put into your img element.

1 Like

Got it. Now I can’t find the run tests button. It disappeared after I transferred my code to the HTML box.

I’m also not sure how to select “copy image addr.”

  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)

It was the first line in the HTML editor.
When you moved the code over you overwrote / deleted it.

Oh ok. I get it now. I appreciate your help.

Notice the img link you have not doesn’t work. Paste that whole thing into a new browser tab. You’ll see the wikipedia page with the image. Right click on the image and a box opens with multiple selections. Click on “copy image address”. Use CTRL + V (or CMD + V on Windows) to paste the link into your img element.

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