im practicing tables and am trying to move the birthday cell to the left 1 cell. how do i do that?
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Tables</title>
<h1>Birthday Tables</h1>
<table>
<thead>
<tr>
<th>James T.</th>
<th>Tonya J.</th>
<th>Derek R.</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">Birthday</th>
</tr>
</tbody>
<tfoot>
<tr>
</tr>
</tfoot>
</table>
