previous | start | next


Well-formedness

Means all elements must either have closing tags or be written in a special form ("Empty", described shortly), and that all the elements must nest.

Although overlapping is illegal in SGML, it was widely tolerated in existing browsers.

INCORRECT: overlapping elements

<p>here is an emphasized <em>paragraph.</p></em>

CORRECT: nested elements

<p>here is an emphasized <em>paragraph</em>.</p>