HTML tables are used to structure and present data on web pages
into rows and columns like a spreadsheet. Some of the tags used to make tables are: <table> ... </table> Used to define start
and end of a table <tr> ... </tr> Defines start and end of a
table row. <th> ... </th> Defines a table header cell. Header cells
default to bold and centered. <td> ... </td> Defines a table cell.
Some attributes used in tables: rowspan Make cells span over multiple rows. colspan Make cells span over multiple rows columns. Note: By default tables have no visible borders. I used CSS to
make visible borders.