<html>
<head>
</head>
<body>
<table border="5" bordercolor="#FF0000" bgcolor="#00FF00">
<tr>
<th>col 1</th>
<th>col 2</th>
<th>col 3</th>
</tr>
<tr>
<td rowspan="2">Row 1 Cell 1</td>
<td bgcolor="red">Row Cell 2</td><td>Row 1Cell 3</td>
</tr>
<tr>
<td>Row 2 Cell 2</td><td>Row 2 Cell 3</td>
</tr>
<tr>
<td colspan="3">Row 3 Cell 1</td>
</tr>
</table>
</body>
</html>
<head>
</head>
<body>
<table border="5" bordercolor="#FF0000" bgcolor="#00FF00">
<tr>
<th>col 1</th>
<th>col 2</th>
<th>col 3</th>
</tr>
<tr>
<td rowspan="2">Row 1 Cell 1</td>
<td bgcolor="red">Row Cell 2</td><td>Row 1Cell 3</td>
</tr>
<tr>
<td>Row 2 Cell 2</td><td>Row 2 Cell 3</td>
</tr>
<tr>
<td colspan="3">Row 3 Cell 1</td>
</tr>
</table>
</body>
</html>
0 Comments