table with header & footer (source)

<HTML>
<HEAD><TITLE>table with header and footer</TITLE></HEAD>
<BODY>
<H1>table with header and footer</H1>
<TABLE BORDER="1" CELLPADDING="3">

<THEAD><TR><TD>ZAHLEN</TD><TD>BUCHSTABEN</TD></TR></THEAD>
<TFOOT><TR><TD>zahlen</TD><TD>buchstaben</TD></TR></TFOOT>
<TBODY>
 <TR><TD>00</TD><TD>A</TD></TR>
 <TR><TD>01</TD><TD>B</TD></TR>
             :
             :
             :
 <TR><TD>24</TD><TD>Y</TD></TR>
 <TR><TD>25</TD><TD>Z</TD></TR>
</TBODY></TABLE>
</BODY>
</HTML>
Previous slide Next slide Back to first slide View graphic version

Notes:

the complete source code of this document is available at table.html, so you can check out how your favorit browser handles table header and table footer tags.