Most web pages are organized with tables. Use the <table> ... </table> tags to define a table. In the <table> tag use width=, bgcolor=, and border= to define the table width, background color and border. |
<html> <head> <title>Trees</title> </head> <body> <table width='600' bgcolor='white' border='1'> </table> </body> </html> |