Why does this code not create a table cell that spans two columns?
<td rowspan="2">Cell</td>
rowspan should be colspan
rowspan
colspan
"Cell" should be inside a <span>
<span>
rowspan="2" should be rowspan=2
rowspan="2"
rowspan=2
td should be th
td
th