Tables with diff no of cells data?

I have page3 with different table content (label, text, textarea - see below code)

Example:

Page1 - table
row1 - 3 cells
row2 - 2 cells

Page2 - table
row1 - 2 cells
row2 - 3 cells

Page3 - table
row1 - 2 cells
row2 - 2 cells

sample code:

<html>
<body>
<table name=“Page1” width=“80%” style=“table-layout:fixed”>
<tr>
<td width=“40%” bgcolor="#999999">Engine Speed</td>
<td width=“20%”><input style=“width:100%” value=“100” type=“text” maxlength=“40”/></td>
<td width=“20%”><textarea style=“width:100%” value=“100” rows=“10”></textarea></td>
</tr>
<tr>
<td width=“40%” bgcolor="#999999">Actual Gear</td>
<td width=“20%”><input style=“width:100%” value=“5”/></td>
</tr></table>
<br>
<br>
<table name=“Page2” width=“80%” style=“table-layout:fixed”>
<tr>
<td width=“40%” bgcolor="#999999">Actual Gear</td>
<td width=“20%”><input style=“width:100%” value=“5”/></td>
</tr>
<tr>
<td width=“40%” bgcolor="#999999">Engine Speed</td>
<td width=“20%”><input style=“width:100%” value=“100” type=“text” maxlength=“40”/></td>
<td width=“20%”><textarea style=“width:100%” value=“100” rows=“10”></textarea></td>
</tr></table>
<br>
<br>
<table name=“Page3” width=“80%” style=“table-layout:fixed”>
<tr>
<td width=“40%” bgcolor="#999999">Actual Gear</td>
<td width=“20%”><input style=“width:100%” value=“5”/></td>
</tr>
<tr>
<td width=“40%” bgcolor="#999999">Engine Speed</td>
<td width=“20%”><textarea style=“width:100%” value=“100” rows=“10”></textarea></td>
</tr>
</table>
</body>
</html>

But the each page looks different… !!!

why??? :insomniac:

How to make the page table content looks simular ???