A tag <col> define o numero de colunas que uma tabela terá, vale lembrar que não deve inserir nenhum conteúdo entre as tags <col> </col>.
Exemplo:<table border="1"> <colgroup span="4"> <col width="20"></col> <col width="50"></col> <col width="80"></col> <col width="20"></col> </colgroup> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table>
| 1 | 2 | 3 | 4 |