<table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> The above is how to make a basic table. Te <table> tag makes the table itself. The <tr> makes a row The <td> makes a cell. The </> tags close the other tags. A table is good for making basic things like an affiliates table.
Tend to avoid them like the plague other than for small pieces of data.. Can do mucg better in CCS nowadays...
I agree,but disagree. Divs can indeed replace tables for the most part,but when you wanna make something like a affilate box,tables just seem better for the job.