<COL>
The <COL> Tag specifies alignment of Columns in a
<TABLE>. The ALIGN command can also issue
LEFT, RIGHT, CENTER, or JUSTIFY. This is an Internet Explorer-specific Tag,
so you'll be better off aligning the text inside each Table Cell
(<TD>).
| Left |
Center |
Right |
Justify |
| Left |
Center |
Right |
Justify |
| Left |
Center |
Right |
Justify |
<table border="1"
width="100%">
<col align="left">
<col align="center">
<col align="right">
<col align="justify">
<tr>
<td width="25%">Left</td>
<td width="25%">Center</td>
<td width="25%">Right</td>
<td width="25%">Justify</td>
</tr>
<tr>
<td width="25%">Left</td>
<td width="25%">Center</td>
<td width="25%">Right</td>
<td width="25%">Justify</td>
</tr>
<tr>
<td width="25%">Left</td>
<td width="25%">Center</td>
<td width="25%">Right</td>
<td width="25%">Justify</td>
</tr></table>
|