Why is this code for a table header incorrect?
<table> <head><tr><th>Header</th></tr></head> </table>
Header should be inside a <td> tag
Header
<td>
<th> should be <td>
<th>
<head> should be <thead>
<head>
<thead>
The <tr> tag should be outside <thead>
<tr>