HTML

From Hawk Wiki
Jump to: navigation, search

HTML Basics

XHTML tags

All tags must be closed
Wrong:

<input type="text">
<br>

Correct:

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