This particular html code is to create the table, with two rows, two columns and to decorate the first column back ground to red and to align second columns text to right. The very interesting thing encountered is the alignment is not happening why?
<table>
<colgroup>
<col style="background-color:red">
<col style="text-align:right">
</colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
</tr>
</table>