NineInchNails: Tabellen

Beitrag lesen

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
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