For curiosities sake, why is the <img> tag not closed in HTML?
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
I also noticed that <img> tags are explicitly closed in XHTML...
<img src="smiley.gif" alt="Smiley face" height="42" width="42"/>
W3Schools: Image Tag
text1
text2
text3` should create 3 paragraphs, but most browsers will assume each `
` closes when the next begins, despite it having a closing tag that's commonly used. The standards say this is fine and perfectly expectable behaviour.
– scragar May 27 '14 at 13:45