| <table> | Defines the beginning of the table |
| <caption>...</caption> | Table Caption |
| <th>First Name</th> | Column Header |
| <tr></tr> | New row |
| <td></td> | New Column |
| border=0 | turn off borders |
| cellpadding=0 | cell padding size |
| cellspacing=0 | cell spacing size |
| colspan="2" | span multiple columns |
| rowspan="2" | span multiple rows |
| align=top | top, middle, bottom |
| border-collapse:collapse | Remove space in table and cell borders |
| border-spacing: 0px; | see: cellspacing |