HTML
HTML Basics
XHTML tags
All tags must be closed
Wrong:
<input type="text"> <br>
Correct:
<input type="text" /> <br />
Last updated: 2015-03-17