Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script>
function bgChange(bg) {
  document.body.style.background = bg;
}
</script>
</head>
<body>
<h2>Змінити колір тла</h2>
<p>Наведіть курсор на квадрати!</p>
<table style="width:300px;height:100px">
  <tr>
    <td onmouseover="bgChange(this.style.backgroundColor)"
    onmouseout="bgChange('transparent')"
    style="background-color:Khaki">
    </td>
    <td onmouseover="bgChange(this.style.backgroundColor)"
    onmouseout="bgChange('transparent')"
    style="background-color:PaleGreen">
    </td>
    <td onmouseover="bgChange(this.style.backgroundColor)"
    onmouseout="bgChange('transparent')"
    style="background-color:Silver">
    </td>
  </tr>
</table>
</body>
</html>