How can you add a header to this table?
<table> <tr> <td>Item</td> <td>Price</td> </tr> </table>
Add type="header" to the <tr> tag
type="header"
<tr>
Replace <td> with <th> for "Item" and "Price"
<td>
<th>
Add <thead></thead> before creating the table
<thead></thead>