1<table style="width:100%">
2 <tr>
3 <th>Firstname</th>
4 <th>Lastname</th>
5 <th>Age</th>
6 </tr>
7 <tr>
8 <td>Jill</td>
9 <td>Smith</td>
10 <td>50</td>
11 </tr>
12 <tr>
13 <td>Eve</td>
14 <td>Jackson</td>
15 <td>94</td>
16 </tr>
17</table>
18
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>