Introduction to XHTML
Use XHTML to define the basic contents of a web page. XHTML is an alternative to HTML with a much stricter syntax. The Web Standards Project states that XHTML is "ready for the future" and "easier to learn".
Example
HTML
Html:
<P> This is the text.<BR> I am regular HTML<BR> </p>
Notice in the HTML how everything is capitalized, and there is one tag that isn't capitalized. In HTML, some tags need to be close, some do not and there is no standard for capitalization of tags.
XHTML
Html:
<p> I am XHTML<br /> I am shiny!!<br /> </p>
XHTML is consistent.Every tag is closed by a forward slash. Everything is also lower case.
XHTML Starter Kit
When viewing the starter kit, right click and select 'view page source' to see the XHTML.
Furthur Reading
View the source of this webpage, it is XHTML. Right click anywhere and choose 'View Page Source'.