<html>
<head>
  <title>JavaScript Example: TicTacToe</title>
  <style>
   .bcell { width: 100px; height: 100px;}
  </style>
</head>

<body>
<table id="board" border align="center">
  <tr>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
  </tr>
  <tr>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
  </tr>
  <tr>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
   <td class="bcell" >&nbsp;</td>
  </tr>
</table>
</body>
</html>