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