<!--sample solution-->
<html>
<head>
<title>Table Fable</title>
</head>
<body>
<table border="1px">
<thead>
<tr>
<th colspan="2">Actors by Birth Year</th>
</tr>
<tr>
<th>Actors</th>
<th>Birth Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Helen Mirren</td>
<td>1945</td>
</tr>
<tr>
<td>Brad Pitt</td>
<td>1963</td>
</tr>
<tr>
<td>Ryan Gosling</td>
<td>1980</td>
</tr>
</tbody>
</table>
</body>
</html>
No comments:
Post a Comment