Within the table, use <tr> ... </tr> to start and end each table row and <td> ... </td> to start and end each cell of the table. |
<html> <head> <title>Trees</title> </head> <body> <table width='600' bgcolor='white' border='1'> <tr><td> </td></tr> </table> </body> </html> |