Common Elements
- <table>I’m the very start of a table</table>
- <tr>I’m a table row</tr>
- <td> I’m a table cell</td>
Common Attributes
- Cellspacing - similar to margin in CSS <table cellspacing=”0”></table>
- Cellpadding - similar to padding in CSS <table cellpadding=”0”></table>
- Align - similar to text-align: center; can also be left and right <td align=”center”></td>