Tribute Page question on img id='image'

Could someone please help and tell me what I’m doing wrong. I cannot pass test #4 " Within the img-div element, I should see an img element with a corresponding id="image" ."

Here is a screenshot of what the code looks like: Screen Shot 2020-03-28 at 6.17.19 PM

Here is a link to my codepen: https://codepen.io/shaggyfdoggg/pen/BaNvqBy

Thank you for any help you can give!

You have errors in your HTML.

  1. You are missing the id attribute on the img-div div.

  2. That is not how a img element is written.

  3. You didn’t close the img-div div correctly (should be </div>)

  4. Your img-caption element is outside the img-div div, it should be inside it.