Home
XHTML 101
Lesson 1
Basic Tags
Global Structure
HTML vs XHTML
Lesson 2
Using <p>, </p> and <br />
XHTML Headers
Strong and Emphasis
Lesson 3
Using <blockquote> </blockquote>
Lesson 4
Changing the Font with CSS
Email
John Wilfong
|
XHTML 101
Lesson 1 - Part 3
HTML vs. XHTML
XHTML 1.0 is a reformulation of HTML 4.0. What this really means is that learning
XHTML is basically the same as learning HTML. The main difference is a few simple
rules - as XHTML is more strict than standard HTML.
-
Stricter adherence to the HTML specification
Many browsers are very lax in how they interpret HTML. This leads to incongruities in
how the pages are displayed, and XHTML doesn't allow that. The best way to correct this
is to use an XHTML validator such as HTML Tidy.
-
Write well formed documents
What this generally means is avoiding overlapping elements.
The following nested code is acceptable:
<p>Paragraph <em>emphasized</em></p>
because the <em> tag is opened and closed within the <p> tag.
However, this is not allowed:
<p>Paragraph <em>emphasized</p></em>
because the <em> tag overlaps the <p> tag.
-
Write tags and attributes in lowercase
XHTML is a case-sensitive markup language, so <LI> and <li> are potentially
two different elements.
-
End tags are required
In HTML, some tags which actually contain elements do not require the end tag. The most
common of these is the <p> tag. XHTML requires that the </p> tag be used.
For singleton tags, such as <br> you should include a trailing slash in the tag
itself, e.g. <br />
-
Attributes must be quoted and include values
What this means is that non-quoted attributes such as <table border=3> are invalid.
And attributes which used to stand alone, must now be written as name="value" pairs.
For example <br noshade="noshade" />
|
|