Merging table cells in HTML

Hi All,

I have the following HTML:
<html>
<body>
<table border=“1”>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr morerows = “1”>
<td>row 2, cell 2</td>
</tr>
</table>
</body>
</html>

When I open the HTML in IE I see the table in the following format:

row 1, cell 1 row 1, cell 2
row 2, cell 2

But actually I need the table in the following format:

row 1, cell 1 row 1, cell 2
-------------row 2, cell 2

Please provide your inputs.

morerows is not a valid attribute. Just put an empty (or at least one with a non breaking space) cell in.

<html>
<body>
<table border="1">
<tr>
   <td>row 1, cell 1</td>
   <td>row 1, cell 2</td>
</tr>
<tr>
  <td>&nbsp;</td>
  <td>row 2, cell 2</td>
</tr>
</table> 
</body>
</html>