1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>Cols and colspan
</title>
<style type=
"text/css">
<!--
table
{margin: 1em 0; width: 200px; border: 2px solid black
;}
td
{border: 1px solid gray
; background: #EFE;}
-->
</style>
</head>
<body>
<table>
<tr>
<td>no cols or colspans
</td>
</tr>
</table>
<table cols=
"4">
<tr>
<td>cols=
4</td>
</tr>
</table>
<table>
<tr>
<td colspan=
"4">colspan=
4</td>
</tr>
</table>
<table cols=
"4">
<tr>
<td colspan=
"4">cols=
4, colspan=
4</td>
</tr>
</table>
<table cols=
"4">
<tr>
<td colspan=
"4">see previous
</td>
</tr>
</table>
</body>
</html>