Problem mit Tabellenerstellung

Yogi
So einmal bitte lachen...

Ich wollte mir ne tabelle aufbauen aber ich werd noch blöd dabei... ich bekomms nicht auf die Reihe... Manche werden sagen, das kanns doch gar nicht sein, das ist doch moppelkotze... Dann hoff ich einfach mal das ihr mir dann helfen könnt...

Ich hab mal ne Zeichnung gemacht, was für eine Tabelle ich machen wollte bzw. wie sie aufgebaut sein sollte...

Schon mal vielen Dank im Voraus
Gruß
Broken Sword
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
<table cellspacing="2" style="width:100%;">
 <tr> <td colspan="2" style="height:60px;">&nbsp;</td>
 </tr>
 <tr> <td style="width:75%;">&nbsp;</td>
         <td>
                <table cellspacing="2" style="width:100%;height:400px;">
                 <tr> <td style="height:80px;">&nbsp;</td></tr>
                 <tr> <td style="height:80px;">&nbsp;</td></tr>
                 <tr> <td style="height:80px;">&nbsp;</td></tr>
                 <tr> <td style="height:80px;">&nbsp;</td></tr>
                 <tr> <td style="height:80px;">&nbsp;</td></tr>
                </table>
         </td>
 </tr>
 <tr> <td colspan="2" style="height:60px;">&nbsp;</td>
</table>


So in etwa?
Schweinebacke
Muss ja nicht gerade Tabelle in Tabelle seiin:

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
<table border="1" width="100%">
  <tr>
    <td width="100%" colspan="2">&nbsp;</td><!-- 1. Zeile Spalten verbinden mit colspan=2 -->
  </tr>
  <tr>
    <td width="80%" rowspan="5">&nbsp;</td><!-- 2. Zeile 1. Spalte 5 Zeilen verbinden mit rowspan=5 -->
    <td width="20%">&nbsp;</td> <!-- 2. Zeile 2. Spalte -->
  </tr>
  <tr>
    <td width="20%">&nbsp;</td> <!-- 3. Zeile 2. Spalte -->
  </tr>
  <tr>
    <td width="20%">&nbsp;</td> <!-- 4. Zeile 2. Spalte -->
  </tr>
  <tr>
    <td width="20%">&nbsp;</td> <!-- 5. Zeile 2. Spalte -->
  </tr>
  <tr>
    <td width="20%">&nbsp;</td> <!-- 6. Zeile 2. Spalte -->
  </tr>
  <tr>
    <td width="100%" colspan="2">&nbsp;</td> <!-- 7. Zeile Spalten verbinden mit colspan=2 -->
  </tr>
</table>
Yogi
Funktionieren beide...

Vielen Dank euch beiden...