Product Landing Page test #2

It would seem that everything is correct, an img with id=“header-img” within the header with an id =“header”. However I cannot pass this test no matter where I place the image. Link to codepen below:

https://codepen.io/swoly_temple/pen/mdeZMKK

Header element give id header-img

If I give the header element an id of “header-img” I will have even more failuers since the id for the header element must be “header”. I tried this none-the-less, and no, it did not work.

You have 4 elements with identical ids. If you read the error it tells you expected 4 to equal 1. That is counting the amount of #header-img elements.

give your 3 other images a different id and it will pass the tests.

OMG, such a simple error. Thank you very much.