- The following HTML isn't displaying like you wanted. Find as many errors as you can:
<table>
<thead background=#EFE><th>Job</th><th>Status</th></thead>
<tr><td>Backup</td><font text-color='green'>Success!</font></td></tr>
<tr><td>Cleanup<td><font text-style='bold'>Fail!</font></td></tr>
</table>
There are several errors here:
-
- The <thead> section is missing a <tr> tag around the cells.
- In the next row, the second cell is missing the opening <td> tag.
- Also, there's no text-color attribute. It's just color.
- In the next row, the first cell is missing a closing </td> tag.
- Also, there's no text-style attribute. The text should just be wrapped in a <b> tag.
- What is wrong...