XHMTL
2008 Oct 04
XHTML is HTML conforming to XML by the following rules:
- All element and attribute names must be lower case.
- End tags are required for all elements, either:
<tag>...</tag>
or <empty />
.
- All attribute values must be (single or double) quoted.
- All paired elements must be nested properly, i.e. the following is an error:
<i>fee<b>foo</i>fie</b>
should be:
<i>fee<b>foo</b></i><b>fie</b>
- There can only be one doucment (or root) element.
2008