tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 HTML > Basic > Table Tag

Table Tag 

The following example shows creating HTML Table, Header, Footer and Caption.

File Name  :  
source/HTML/basic_tags/table.html 
01<html>
02<body>
03     
04    <table border = "1">
05        <caption>Table caption</caption>
06        <thead>
07             <tr><td colspan="3">Table Header</td></tr>
08        </thead>
09 
10        <tfoot>
11             <tr><td colspan="3">Table Footer</td></tr>
12        </tfoot>
13 
14        <tbody>
15            <tr>
16                <th>Column1</th>
17                <th>Column2</th>
18                <th>Column3</th>
19            </tr>
20 
21            <tr>
22                <td>Row1 Cell 1</td>
23                <td>Row1 Cell 2</td>
24                <td>Row1 Cell 3</td>
25            </tr>
26            <tr>
27                <td>Row2 Cell 1</td>
28                <td>Row2 Cell 2</td>
29                <td>Row2 Cell 3</td>
30            </tr>
31        </tbody>
32    </table>
33 
34</body>
35</html>

It gives the following output,
File Name  :  
source/HTML/basic_tags/table.html 
Table caption
Table Header
Table Footer
Column1 Column2 Column3
Row1 Cell 1 Row1 Cell 2 Row1 Cell 3
Row2 Cell 1 Row2 Cell 2 Row2 Cell 3



 
  


  
bl  br