1You can create multiple sections within a table by using multiple <tbody>
2 elements. Each may potentially have its own header row or rows; however,
3 there can be only one <thead> per table!
4
5<table>
6 <thead>
7 <tr><th>Customer</th><th>Order</th><th>Month</th></tr>
8 </thead>
9 <tbody>
10 <tr><td>Customer 1</td><td>#1</td><td>January</td></tr>
11 <tr><td>Customer 1</td><td>#2</td><td>April</td></tr>
12 <tr><td>Customer 1</td><td>#3</td><td>March</td></tr>
13 </tbody>
14 <tbody>
15 <tr><td>Customer 2</td><td>#1</td><td>January</td></tr>
16 <tr><td>Customer 2</td><td>#2</td><td>April</td></tr>
17 <tr><td>Customer 2</td><td>#3</td><td>March</td></tr>
18 </tbody>
19 <tbody>
20 <tr><td>Customer 3</td><td>#1</td><td>January</td></tr>
21 <tr><td>Customer 3</td><td>#2</td><td>April</td></tr>
22 <tr><td>Customer 3</td><td>#3</td><td>March</td></tr>
23 </tbody>
24</table>