<!DOCTYPE html>
<html>
<head>
<title>Harsh Colors</title>
</head>
<body>
<h1>Harsh Colors</h1>
<!-- this uses the deprecated bgcolor attribute and font element to specify colors -->
<table>
<tr>
<td bgcolor="#00FF00"><font color="#FF0000"><b>This is a bad combination of colors</b></font></td>
</tr>
<tr><td bgcolor="#ffffff"> </td></tr>
<tr>
<td bgcolor="#0000FF"><font color="#FF0000"><b>This is a bad combination of colors</b></font></td>
</tr>
</table>
</body>
</html>