Wie schreibe ich diese Tabelle?

Xxplozive
Hallo alle zusammen.

Ich möchte für meine Homepage einen Wechselheader basteln. Dieser Header soll aus 4 Hochformatfotos und 6 Querformatfotos bestehen. Habe die Anordnung auch mal mit angehängt. Kann mir einer mal eine grobes Grundgerüst fertig basteln? Ich bin irgendwie total zu doof dafür.

Der Header soll 1024*204px haben.
Querbilder sollen 200*100px haben.
Hochbilder sollen 100*200px haben.

Greetz Xx
derkleene
Habe mal ein grobes Grundgerüst gemacht....

verfeinern kannst du es ja selber....

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:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
<table width="1024px" height="204px" bgcolor="Blue" border="0">
	<tr>
	<td width="100px" height="200px" bgcolor="Aqua">1</td>
	<td><table border="0">
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">2</td>
			</tr>
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">3</td>
			</tr>
		</table>
	</td>
	<td width="100px" height="200px" bgcolor="Aqua">4</td>
	<td><table border="0">
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">5</td>
			</tr>
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">6</td>
			</tr>
		</table>
	</td>
	<td width="100px" height="200px" bgcolor="Aqua">7</td>
	<td><table border="0">
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">8</td>
			</tr>
			<tr>
				<td width="200px" height="100px" bgcolor="Fuchsia">9</td>
			</tr>
		</table>
	</td>
	<td width="100px" height="200px" bgcolor="Aqua">10</td>
	</tr>
</table>