The instructions are as follows: “Make the “Famous Monster” and “Birth Year” labels emphasized (i.e. make them italicized).”
Not sure what I keep doing wrong
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
``` Table Time<body>
<table style="border-collapse:collapse;">
<thead>
<tr>
<th style="color:red"><em>Famous Monster</em> by <em>Birth Year</em></th>
</tr>
<tr style="border-bottom:1px solid black;">
<th style="padding:5px;">Famous Monster</th>
<th style="padding:5px;border-left:1px solid black;">Birth Year</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding:5px;">King Kong</td>
<td style="padding:5px;border-left:1px solid black;">1933</td>
</tr>
<tr>
<td style="padding:5px;">Dracula</td>
<td style="padding:5px;border-left:1px solid black;">1897</td>
</tr>
<tr>
<td style="padding:5px;">Bride of Frankenstein</td>
<td style="padding:5px;border-left:1px solid black;">1944</td>
</tr>
</tbody>
</table>
</body>
```