<!-- I HEREBY WRITE AN HTML DOCUMENT. -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<title>6 WAYS FOR 3 CELLS</title>
</head>
<body>
<!-- 6 WAYS FOR 3 CELLS. TABLE 1 - 6. -->
<!-- 1 WAY FOR "3 X 1." TABLE 1. -->
<!-- 1 WAY FOR "3 X 1" WHICH CONSISTS OF 3 CELLS. TABLE 1. -->
<!-- TABLE 1: 3 CELLS. -->
<table border="1" summary="TABLE 1">
<tr><td>CELL</td><td>CELL</td><td>CELL</td></tr>
</table><br />
<!-- 1 WAY FOR "1 X 3." TABLE 2. -->
<!-- 1 WAY FOR "1 X 3" WHICH CONSISTS OF 3 CELLS. TABLE 2. -->
<!-- TABLE 2: 1 CELL. 1 CELL. 1 CELL. -->
<table border="1" summary="TABLE 2">
<tr><td>CELL</td></tr>
<tr><td>CELL</td></tr>
<tr><td>CELL</td></tr>
</table><br />
<!-- 4 WAYS FOR "2 X 2." TABLE 3 - 6. -->
<!-- 2 WAYS FOR "2 X 2" WHICH CONSISTS OF 1 DOUBLE WIDE CELL AND 2 CELLS. TABLE 3 - 4. -->
<!-- TABLE 3: 1 DOUBLE WIDE CELL. 2 CELLS. -->
<table border="1" summary="TABLE 3">
<tr><td colspan="2">CELL</td></tr>
<tr><td>CELL</td><td>CELL</td></tr>
</table><br />
<!-- TABLE 4: 2 CELLS. 1 DOUBLE WIDE CELL. -->
<table border="1" summary="TABLE 4">
<tr><td>CELL</td><td>CELL</td></tr>
<tr><td colspan="2">CELL</td></tr>
</table><br />
<!-- 2 WAYS FOR "2 X 2" WHICH CONSISTS OF 1 DOUBLE HIGH CELL AND 2 CELLS. TABLE 5 - 6. -->
<!-- TABLE 5: 1 DOUBLE HIGH CELL AND 1 CELL. 1 CELL. -->
<table border="1" summary="TABLE 5">
<tr><td rowspan="2">CELL</td><td>CELL</td></tr>
<tr><td>CELL</td></tr>
</table><br />
<!-- TABLE 6: 1 CELL AND 1 DOUBLE HIGH CELL. 1 CELL. -->
<table border="1" summary="TABLE 6">
<tr><td>CELL</td><td rowspan="2">CELL</td></tr>
<tr><td>CELL</td></tr>
</table>
</body>
</html>
<!-- I HAVE WRITTEN AN HTML DOCUMENT. -->