1<table>
2 <thead>
3 <tr>
4 <th>header1</th>
5 <th>header2</th>
6 <th>header3</th>
7 </tr>
8 </thead>
9 <tbody>
10 <tr>
11 <td>text1.1</td>
12 <td>text1.2</td>
13 <td>text1.3</td>
14 </tr>
15 <tr>
16 <td>text2.1</td>
17 <td>text2.2</td>
18 <td>text2.3</td>
19 </tr>
20 <tr>
21 <td>text3.1</td>
22 <td>text3.2</td>
23 <td>text3.3</td>
24 </tr>
25 <tr>
26 </tr>
27 </tbody>
28</table>
1<table>
2 <tr> <!-- This is the first row -->
3 <th>This is the heading</th>
4 <th>Next heading to the right</th>
5 </tr>
6 <tr> <!-- This is the second row -->
7 <td>This is where the table data goes</td>
8 <td>This is the second columns data</td>
9 </tr>
10</table>
1HTML123456789101112<table data-order='[[ 1, "asc" ]]' data-page-length='25'> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th data-class-name="priority">Salary</th> </tr> </thead></table>