<table> - Begin Table Tag
<tr> - Begin Table Row Tag. Table rows are horizontal.
<td> - Begin Table Data Tag. Table Datas Divide Table Rows Into Cells.
Text and images between a table data tag place the text and images within that cell.
</td> - This ends a table data. This is neccessary in order to stop things from being 
	in the same table data.
</tr> - Vital part of every table. This stops a row and allows the author to start a 
	new row or end the table.
</table> - End table tag. Place this at the end of a table or prepare for strange errors.
Optional Tags

<table width="100%" height="100%" border="1" cellspacing="1" cellpadding="1">
Width and height tags can be used as a percentage of the screen or a pixel value.
Border sets the thickness of the table border. A border of 0

Back to Tips