This can get quite confusing if you're not entirely certain of what you are doing, but that's purely down to the length of the code for large tables.
To put a table into your blog you need to use three or four code elements.
First you'll need to use the ‹table› command, possibly expanding it with a border tag, which I'll come to shortly.
Then you'll need to start a row with ‹tr›, and then start a column with ‹td›.
So the coding for a basic 2X2 table would look something like this:
‹table›‹tr›‹td›top left‹/td›‹td›top right‹/td›‹/tr›
‹tr›‹td›bottom left‹/td›‹td›bottom right‹/td›‹/tr›‹/table›
Which will give you this:
| top left |
top right |
| bottom left |
bottom right |
Now to add a border, in order to distinguish between the individual cells, you'll need to add the 'border=' tag in the ‹table› command like this (I'll use a 1 pixel border here):
‹table border="1"›‹tr›‹td›top left‹/td›‹td›top right‹/td›‹/tr›
‹tr›‹td›bottom left‹/td›‹td›bottom right‹/td›‹/tr›‹/table›
Which gives you this:
| top left |
top right |
| bottom left |
bottom right |
The most important thing to remember, though, is that you have to open the table command, then open the row command, then the column command, add the content, close the column command with ‹/td›, open, fill and close as many columns as required, then close the row with ‹/tr› and repeat for however many rows you need then close the table off with ‹/table›
The next lesson will be about centering of tables and content.
Good so far?