<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" id="b0">&nbsp;</td>
  <td class="bcell" id="b1">&nbsp;</td>
  <td class="bcell" id="b2">&nbsp;</td>
  </tr>
  <tr>
  <td class="bcell" id="b3">&nbsp;</td>
  <td class="bcell" id="b4">&nbsp;</td>
  <td class="bcell" id="b5">&nbsp;</td>
  </tr>
  <tr>
  <td class="bcell" id="b6">&nbsp;</td>
  <td class="bcell" id="b7">&nbsp;</td>
  <td class="bcell" id="b8">&nbsp;</td>
  </tr>
</table>
</body>
</html>