Complete the code to merge two cells horizontally using the correct attribute.
<table>
<tr>
<td [1]>Merged Cell</td>
<td>Cell 2</td>
</tr>
</table>The colspan attribute merges cells horizontally by spanning columns.
Complete the code to merge two cells vertically using the correct attribute.
<table>
<tr>
<td [1]>Merged Cell</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>The rowspan attribute merges cells vertically by spanning rows.
Fix the error in the code to correctly merge two cells horizontally.
<table>
<tr>
<td [1]>Merged Cell</td>
<td>Cell 2</td>
</tr>
</table>HTML attributes must have values in quotes. colspan="2" is correct syntax.
Fill both blanks to merge a cell vertically and horizontally.
<table>
<tr>
<td [1] [2]>Merged Cell</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>Use rowspan="2" to merge vertically and colspan="2" to merge horizontally.
Fill all three blanks to create a table with a cell merged vertically and two cells merged horizontally.
<table>
<tr>
<td [1]>Vertical Merge</td>
<td [2]>Horizontal Merge</td>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 4</td>
<td [3]>Merged Cell</td>
</tr>
</table>The first cell uses rowspan="2" to merge vertically. The second and last cells use colspan="2" to merge horizontally.