I’ve realized that many tags in HTML5, like Canvas and progress tags are multi tags
<canvas></canvas>
<progress></progress>
Couldn’t they work just fine like:
<canvas/>
<progress/>
Are they multi tags just for holding something to display when they don’t work?
For the
<canvas>element it is so you can place content that will be shown to browsers that do not support that element yet:For the
<progress>element it allows you to control the display of the progress text: