1<tr>
2 <td style="width:70%">January</td>
3 <td style="width:30%">$100</td>
4</tr>
1<!-- use the scope tag -->
2<table>
3 <tr scope="col">Column</tr>
4 <tr scope="row">Row</tr>
5</table>
1<table style="width: 100%">
2 <tbody>
3 <tr>
4 <td style="background-color: #777">15%</td>
5 <td style="background-color: #aaa">70%</td>
6 <td style="background-color: #777">15%</td>
7 </tr>
8 </tbody>
9</table>