Wie kann ich im html eine tabelle in eine tabelle einfügen?
Beispiel: (die untere tabelle gehört in die obere erste eingefügt!)
<tr height=210>
<td width=240>1</td>
<td width=30>1</td>
</tr>
----------------------------------------------------------------------------
<tr height=30>
<td colspan=4 align="center" valign="middle">1</td>
</tr>
<tr height=60>
<td width=60>1</td>
<td width=80>1</td>
<td width=50 rowspan=2>1</td>
<td width=50>1</td>
</tr>
<tr height=60>
<td colspan=2>1</td>
<td width=50>1</td>
</tr>
<tr height=60>
<td colspan=4>1</td>
</tr>