There are a few tags to keep in mind for creating tables in HTML:
tag to wrap the table
tag to wrap the table head
tag to wrap the body of the table
(table row) tag to create rows
(data table) tag to create cells
| tag (table head) to create a title in the header
The most important tags to remember are the , , and tags. While the other tags are additional or optional, may or may not be used.
Below is an example of creating a simple table using html code
===============
Table HTML
Row 1 column 1 |
Row 1 column 2 |
Row 2 column 1 |
Row 2 column 2 |
================ | |