| Substructure
of the elements |
In the body of an HTML document, some elements
have their own internal structure to help define their use
and appearance. A good example of this is the TABLE element.
An HTML table is constructed as at least
one row with at least one data cell, much like an HTML document
needs at least one head and one body:
<TABLE>
<TR>
<TD>DATA
</TABLE>
Each table can also have a caption, a header,
a footer and body content.
<TABLE>
<CAPTION>Caption</CAPTION>
<THEAD>
<TR>
<TD>Data
<TFOOT>
<TR>
<TD>Data
<TBODY>
<TR>
<TD>Data
</TABLE>
Copyrights : Layout Galaxy All Rights Reserved
No part of this tutorial may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, electrostatic, magnetic tape, mechanical or otherwise, without prior permission in writing from Layout Galaxy.
|
|