Currently doing the video compilation page project (which involves creating three sections with embedded videos).
My 3rd video wasn’t appearing until I realised that I’d forgotten to put a tag at the end of the width attribute in the 2nd video. When I added the missing tag, the 3rd video appeared.
I’m just trying to understand syntactically why the missing closing tag would prevent the 3rd video appearing. (I’m very new to coding. This is my 2nd day).
was the > missing the one for the iframe tag?
if it’s that, then the closing tag would be considered part of the iframe opening tag, meaning the iframe element is not closed, and everything considered inside it disappears
if you miss one > your syntax is wrong and the html you have written is not parsed as you want