SaCoMa's Homepage

Beispiel:


Flächen: Haus A Haus B
Wohnfläche 100 150
Gartenfläche 50 100
Gesamtfläche 150 250
Alle Angaben in Quadratmetern.


Code:

<table>
<thead>
<tr>
<th><br>
</th>
<th> Haus A </th>
<th> Haus B </th>
</tr>
</thead>
<tbody>
<tr>
<th> Wohnfläche </th>
<td> 100 </td>
<td> 150 </td>
</tr>
<tr>
<th> Gartenfläche </th>
<td> 50 </td>
<td>100 </td>
</tr>
</tbody>
<tfoot>
<tr>
<th> Gesamtfläche </th>
<td> 150 </td>
<td> 250 </td>
</tr>
<tr>
<td colspan="3"> Alle Angaben in Quadratmetern. </td>
</tr>
</tfoot>
</table>