XML
DTD
Schemas
XSL
DOM
XHTML
This tutorial covers the basics of XHTML. Before reading this tutorial you should already be familiar with HTML and XML. Since there are many great HTML sites available I do not discuss HTML here. However, you may want to read my XML tutorial.
What is XHTML
XHTML stands for Extensible HyperText Markup Language.
XHTML's goal is to replace HyperText Markup Language (HTML). It is very similar to HTML 4.0, but XHTML's syntax is stricter than HTML. This is because XHTML is an XML application.
XHTML standards are defined by the World Wide Web Consortium (W3C), which ensures that structured data will be uniform and independent of applications or vendors. The W3C site is the most complete reference of XHTML available.
XHTML Versus HTML
Here are the main differences between XHTML and HTML:
<b><i>This text is bold and italic</b></i> This is incorrect <b><i>This text is bold and italic</i></b> This is correct
<City> <CITY> <city>
<City Zip="06706">This is incorrect</city> <city zip="06706">This is correct</city>
Incorrect break<br> Correct break<br/> Correct break<br /> Incorrect horizontal rule<hr> Correct horizontal rule<hr></hr>
NOTE: To be compatible with current browsers, empty elements should have an extra space like this: <hr>< /hr>
<city zip="01085">Westfield</city>
zip="01085" is an attribute of the <city> element.
<message date="08/25/2000"> This is correct <message date=08/25/2000> This is incorrect
<option selected> This is incorrect <option selected="true">This is correct
<img src="mypicture.jpg" name="mypicture" /> This is incorrect <img src="mypicture.jpg" id="mypicture" /> This is correct
NOTE: To be compatible with current browsers, try this: <img src="mypicture.jpg" id="mypicture" name="mypicture" />
<script> <![CDATA[ ... your script code ... ]]> </script>
Additionally there must be a DOCTYPE declaration. The DOCTYPE definition specifies the document type.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd">
Here's a sample XHTML template:
<!DOCTYPE html> <html> <head> <title>Some Title</title> </head> <body> . . body of page . . </body> </html>
Document Type Definitions
A The DOCTYPE definition line in an XHTML document specifies the document type by referencing a Document Type Definition (DTD). The DTD specifies the syntax and legal elements of an XHTML document. Three types of documents are defined:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/frameset.dtd">
XHTML Validation
A Valid XHTML document one that adheres to the rules of a Document Type Definition. A DTD defines the legal elements of an XHTML document.
You can use the W3C XHTML Validator to validate your XHTML document. Enter the url of your XHTML page. Ex: http://www.w3schools.com/xhtml/default.asp
Index of XHTML Terms
Attributes Case Sensitivity CDATA Definition Closed Elements DOCTYPE Document Type Definition Empty Elements Extensible Hypertext Markup Language HTML
Hypertext Markup Language ID Tag Name Tag Nesting Required Elements Special Characters World Wide Web Consortium - W3C Validation XHTML
If you use this code, please mention "www.TheScarms.com"
Email this page
Crap! You're using an ad blocker :-(
Please turn it off...The few ads shown are the only thing that allows TheScarms to keep going