tables are really quite simple once you get the hang of them. Okay lets begin hehehe
Heres a simple table with some text in it. The 1,2,3 lines are the lines of coding
---------
<table> = the opener of the table
<tr> = the first column(going sideways - right to left)
<td> = the first square in the first column
Hi There, THis is my first Table = text
</td> = ending the first square in the first column
</tr> = ending the first column
</table> = ending the table
how the code actualy looks
1. <table>
2. <tr>
3. <td>
4. Heres my text
5. </td>
6. </tr>
7. </table>
Okay now to make a more complicated table hehe
<table> = The opener of the table
<tr> = the first column (left-right)
<td> = the square in the column
Heres Text = the text(object)
</td> = ending the first square in the column
<td> = starting the second square in the column
Heres more text = text
</td> = ending the second square in the column
</tr> = ending the first column
<tr> = starting the second column(left-right)
<td> = starting the first square of the second column
Heres Text = text thats in the first square of the second column
</td> = ending the first square of the second column
</tr> = ending the second column
</table> = ending the table
Full code
1. <table>
2. <tr>
3. <td>
4. Heres some text
5. </td>
6. <td>
7. Heres some more text
8. </td>
9. </tr>
10. <tr>
11. <td>
12. Heres more text hehe
13. </td>
14. </tr>
15. </table>
I hope this has helped
If you need more assistince or you want to know how to really work tables. You can just post here again or you can email me at
ACJavascript@aol.com -- I am open to help anyone