Hi ich weiss echt nicht weiter.
Unser Informatiklehrer verlangt wiedereinmal etwas was er schlecht erklaert hat.
http://img3.imagebanana.com/img/v4d7nltc/TAFEL.JPG
Das sollen wir als HTML Tabelle machen.
<html>
<head>
<title>Tabellen</title>
</head>
<body>
<table border="3" cellpadding="3">
<tr>
<td height="20" width="20">
a
</td>
<td width="40">
b
</td>
<td width="20">
c
</td>
</tr>
<tr>
<td rowspan="2">
d
</td>
<td>
e
</td>
<td rowspan="2" colspan="2" width="40" height="40">
g
</td>
</tr>
<tr>
<td>
f
</td>
</tr>
</table>
</body>
</html>
> [Link zur Tabelle](http://upload.zichy.de/files/Tabelle_Aufgabe218.html)
> Soweit bin ich, aber ich schaff es nicht, dass die Buchstaben "E" und "F" nur halbsolange sind wie "b" (also die Tabellen)
> Findet ihr den Fehler?
> Danke im Voraus fuer die Hilfe
> NIN
Hi
Hab das hier gemacht:
<html>
<head>
<title>Tabellen</title>
</head>
<body>
<table border="3" cellpadding="3">
<tr>
<td height="20" width="20">
a
</td>
<td width="40" colspan="2">
b
</td>
<td width="20" colspan="2">
c
</td>
</tr>
<tr>
<td rowspan="2">
d
</td>
<td width="10">
e
</td>
<td rowspan="2" colspan="2" width="40" height="40">
g
</td>
</tr>
<tr>
<td width="10">
f
</td>
</tr>
</table>
</body>
</html>
Schaus dir mal an und sag ob es das ist was du dir vorstellst.
MFG
Simon