1Simple table with caption:
2
3<table>
4<caption>Demonstration of simple table syntax.</caption>
5<thead>
6<tr class="header">
7<th align="right">Right</th>
8<th align="left">Left</th>
9<th align="center">Center</th>
10<th align="left">Default</th>
11</tr>
12</thead>
13<tbody>
14<tr class="odd">
15<td align="right">12</td>
16<td align="left">12</td>
17<td align="center">12</td>
18<td align="left">12</td>
19</tr>
20<tr class="even">
21<td align="right">123</td>
22<td align="left">123</td>
23<td align="center">123</td>
24<td align="left">123</td>
25</tr>
26<tr class="odd">
27<td align="right">1</td>
28<td align="left">1</td>
29<td align="center">1</td>
30<td align="left">1</td>
31</tr>
32</tbody>
33</table>
34
35Simple table without caption:
36
37|_. Right|_. Left|_. Center|_. Default|
38|>. 12|<. 12|=. 12|12|
39|>. 123|<. 123|=. 123|123|
40|>. 1|<. 1|=. 1|1|
41
42Simple table indented two spaces:
43
44<table>
45<caption>Demonstration of simple table syntax.</caption>
46<thead>
47<tr class="header">
48<th align="right">Right</th>
49<th align="left">Left</th>
50<th align="center">Center</th>
51<th align="left">Default</th>
52</tr>
53</thead>
54<tbody>
55<tr class="odd">
56<td align="right">12</td>
57<td align="left">12</td>
58<td align="center">12</td>
59<td align="left">12</td>
60</tr>
61<tr class="even">
62<td align="right">123</td>
63<td align="left">123</td>
64<td align="center">123</td>
65<td align="left">123</td>
66</tr>
67<tr class="odd">
68<td align="right">1</td>
69<td align="left">1</td>
70<td align="center">1</td>
71<td align="left">1</td>
72</tr>
73</tbody>
74</table>
75
76Multiline table with caption:
77
78<table>
79<caption>Here's the caption. It may span multiple lines.</caption>
80<col width="15%" />
81<col width="13%" />
82<col width="16%" />
83<col width="35%" />
84<thead>
85<tr class="header">
86<th align="center">Centered Header</th>
87<th align="left">Left Aligned</th>
88<th align="right">Right Aligned</th>
89<th align="left">Default aligned</th>
90</tr>
91</thead>
92<tbody>
93<tr class="odd">
94<td align="center">First</td>
95<td align="left">row</td>
96<td align="right">12.0</td>
97<td align="left">Example of a row that spans multiple lines.</td>
98</tr>
99<tr class="even">
100<td align="center">Second</td>
101<td align="left">row</td>
102<td align="right">5.0</td>
103<td align="left">Here's another one. Note the blank line between rows.</td>
104</tr>
105</tbody>
106</table>
107
108Multiline table without caption:
109
110<table>
111<col width="15%" />
112<col width="13%" />
113<col width="16%" />
114<col width="35%" />
115<thead>
116<tr class="header">
117<th align="center">Centered Header</th>
118<th align="left">Left Aligned</th>
119<th align="right">Right Aligned</th>
120<th align="left">Default aligned</th>
121</tr>
122</thead>
123<tbody>
124<tr class="odd">
125<td align="center">First</td>
126<td align="left">row</td>
127<td align="right">12.0</td>
128<td align="left">Example of a row that spans multiple lines.</td>
129</tr>
130<tr class="even">
131<td align="center">Second</td>
132<td align="left">row</td>
133<td align="right">5.0</td>
134<td align="left">Here's another one. Note the blank line between rows.</td>
135</tr>
136</tbody>
137</table>
138
139Table without column headers:
140
141|>. 12|<. 12|=. 12|>. 12|
142|>. 123|<. 123|=. 123|>. 123|
143|>. 1|<. 1|=. 1|>. 1|
144
145Multiline table without column headers:
146
147<table>
148<col width="15%" />
149<col width="13%" />
150<col width="16%" />
151<col width="35%" />
152<tbody>
153<tr class="odd">
154<td align="center">First</td>
155<td align="left">row</td>
156<td align="right">12.0</td>
157<td align="left">Example of a row that spans multiple lines.</td>
158</tr>
159<tr class="even">
160<td align="center">Second</td>
161<td align="left">row</td>
162<td align="right">5.0</td>
163<td align="left">Here's another one. Note the blank line between rows.</td>
164</tr>
165</tbody>
166</table>
167