The format of a table is:
What this code will do is produce a table with one row and two columns (2 cells in total).
A table can have as many rows as you want and a row can have as many columns as you want (staying within page-width limits of course).
For each new row, add another
tag after
tag and for each new column, add another
tag after |
For example, this following code will produce a table with two rows and 2 columns.
You can put whatever you want inside the
tags. For example, if you want to add an image to a cell, do this:
|  |
Similarly, a header would go like this:
| |
Hope this helps you.