blob: 706f704093b8dc73434813c5e701d8ff652e1734 [file] [log] [blame]
<!-- this example was originally copied from www.xguru.com and then modified -->
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<title>
An example XHTML Basic document
</title>
</head>
<body>
<p>This is an example of a document which conforms with XHTML Basic.</p>
<p>Notice how I cannot directly place plain text within the body tags. I must wrap this within p tags.
<P>Also notice how I need to <br>close my br tag.</P>
<table>
<tr>
<td>**</td>
<td>Please note, you can use tables. But you cannot have other tables within tables.<br>
There are also no border attributes or width attributes on tables.</td>
<td>**</td>
</tr>
</table>
<h1>This is a header</h1>
<p>The end.
</body>
</html>