The content of the table can be divided into sections. The sections are given below.
<thead>..</thead>
- to define the head section
<tfoot>..</tfoot>
- to define the foot section
<tbody>..</tbody>
- to define the body section
Note
These blocks are include in the <table>
block.
Each <table>
element may have only one <thead>
section and one <tfoot>
section.
The <thead>
and <tfoot>
blocks must be defined before the <tbody>
section.
Each of these sections contain regular <tr>
elements.
These elements accept the attributes like align, bgcolor and valign.