<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title> This is an example HTML document </title>
    <meta name="keywords" content="XHTML, examples, Ian Graham"  />
    <link rel="stylesheet" href="./style.css" />
  </head>
  <body>
  <h1>An introduction to HTML and XHTML </h1>
  <p> This document is written in XHTML -- it looks just like HTML,
  but has syntax consistent with the rules of XML, and uses element
  nesting rules prescribed by the XHTML specification (which you'll
  find at 
  <a href="http://www.w3.org/TR/xhtml1/">http://www.w3.org/TR/xhtml1/</a>,
  with an 'updated' version at 
  <a href="http://www.w3.org/TR/xhtml11/">http://www.w3.org/TR/xhtml11/</a>.
  YOu can visit those sites to download the detailed specifications for
  the XHTML language.
  </p>
  <p>And here's another paragraph, just to show the spacing between two
    adjacent paragraphs.  Well, what did you expect for free, art?
  </p>
  <h3>An Example Table</h3>
  <table>
     <tr> <th>Column 1 </th>           <th> Column 2    </th> </tr>
     <tr> <td>Stuff in column 1 </td>  <td> in column 2 </td> </tr>
     <tr> <td>More  in column 1 </td>  <td> more 2 </td> </tr>
  </table>
  <p>And that's about it.  This is just a simple example -- some others
  are found at the supporting Web site for my XHTML book, at
  <a href="http://www.utoronto.ca/ian/books/xhtml1/">http://www.utoronto.ca/ian/books/xhtml1/</a>.
  </p>
  <hr size="1" noshade="noshade" />
  <div class="footer">
  Example by <a href="http://www.utoronto.ca/ian/books/">Ian Graham</a>, 
  prepared in January, 2002, as part of an article for 
  <a href="http://www.computerpoweruser.com">Computer Power User Magazine</a>. 
  </div>
  </body>
</html>

