|
Table Tag
The following example shows creating HTML Table, Header, Footer and Caption.
05 | < caption >Table caption</ caption > |
07 | < tr >< td colspan = "3" >Table Header</ td ></ tr > |
11 | < tr >< td colspan = "3" >Table Footer</ td ></ tr > |
|
It gives the following output,
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 |
|
|
|