Tables
Tables are a great tool for organizing data.
A table is like a grid, and each little box is called a cell.
If you have cells going horizontally like this,RRRRRR, it's called a row (think of a row of people waiting in line- they aren't going to stand on top of each other).
If the cells are vertical, it's called a column (think of the white Roman columns).
The first part of the code is this:
If you just have that, nothing will show up. To add a row, you must add <tr> (and end that tag). To add a column, you must add <td> and end the tag.
| here is a column | here is another column |
tr makes rows (remember the 'r')
td makes columns (if you just have one row, the column won't look like a column)
To add a border, copy the code and change the '1' to any number.
| here is a column | here is another column |
To change the border color, copy the code and change 'orange' to any color.
| here is a column | here is another column |
To change the background color of the whole table, copy this code and change 'gold.'
| here is a column | here is another column |
If you want different cell colors, copy this code and change the colors.
| here is a column | here is another column |
To change the width of the whole table, copy this code and change the number.
| here is a column | here is another column |
To have different cell widths, copy this code:
| here is a column | here is another column |
To add a background to your whole table, copy this code (and you can change the smiley helper url to whatever your image is):
| here is a column | here is another column |
To add a different background to each cell, copy this code:
| here is a column | here is another column |

