HTML

HTML Basics

XHTML tags

All tags must be closed
Wrong:

<input type="text">
<br>

Correct:

<input type="text" />
<br />