<html>
<head>
<title>Tables in HTML</title>
Tables in HTML Opening table tag:
All formatting of the table is
</head> done here.
<body>
<h1>How to make tables in HTML</h1>
<table> Table Headers:
Automatically
<tr> formatted as
<th>Name</th> bold. Name Surname Age
Table Row <th>Surname</th>
<th>Age</th>
</tr>
<tr>
<td>Susan</td> Susan Venter 17
Table Data
Table Row <td>Venter</td>
<td>17</td>
</tr>
<tr> Jacob Andrews 18
<td>Jacob</td>
Table Row <td>Andrews</td>
<td>18</td>
</tr>
Bianca van der Merwe 16
<tr>
<td>Bianca</td>
Table Row <td>van der Merwe</td>
<td>16</td>
</tr>
</table>
</body> Closing table tag
</html> Mrs. R. Rautenbach