Very new and unsure which tests are failing

Hello! I am a super beginner and I am working on the “Tribute Page” project. I think I have the very basics done, but 6/10 tests are failing but I’m not sure which one ones. I’ve compared it to the example codepen that is provided but I’m not finding my mistakes/omissions. Any help and advice would be much appreciated!

Thank you in advance from a very new student

My first codepen

You just need to read the error messages closely. They pretty much tell you exactly what the tests are looking for. The first one you are getting is:

"4. Within the “img-div” element, I should see an element with a corresponding id=“image”.

I’m looking at your page and the <img> does not have an id set to “image”. Change the id to what the test wants it to be and your golden.

Repeat for the other tests you are not passing.

P.S. Click on the red “Tests” button to see the error messages (just in case you didn’t know to do that).

  1. Within the “img-div” element, I should see an element with a corresponding id=“image”

  2. Within the “img-div” element, I should see either a or

    element with a corresponding id=“img-caption” that contains textual content describing the image shown in “img-div”.

click the test button and it will tell what’s missing in your code
image

Thank you for the responses! I didn’t realize I could click the tests button to see the errors. I’ll keep trying!

Thank you for help! My tribute page is now 10/10!

1 Like

Thank you for help! You were right and it was that my should have been . It’s 10/10 now!