FCC - Product Landing Page "Video" Question

So I’m attempting to hit all the test checks before I go back and pretty up the page. I’m using the codepen.io version of the test suite if that matters. I seem to be able to pass all tests but #6 looking for a video. I’m using an iframe with … id=“video” … and it seems to be able to run and play within the page just fine, but I figure I must have something mislabeled somewhere that I’m just not seeing no matter how many times I go over it.

Screenshot of error with iframe html above.

If someone could point me in the right direction I’d be extremely grateful!

     <iframe id="video" name="video" allowfullscreen height="360" width="640" src="https://player.vimeo.com/video/281100553">TEXT
      </iframe>

I’m not sure what “TEXT” is doing here. When I remove it, it passes.

Smacks Head Thank you! I had added the TEXT after encountering the test failure (some tip that may or may not be true about usage in older browsers). I had the ending iframe tag indented directly below the opening tag, but I think I must have accidentally put some whitespace in there because when I put the ending tag inline it takes it. Anyway, thank you again!