ckportfolio.com - Tic-tac-toe: HTML

Tic-tac-toe: HTML

<h1 id="title">
  Tic Tac Toe
</h1>

<div id="board">

  <button>?</button>
  <button>?</button>
  <button>?</button>
  <br>
  <button>?</button>
  <button>?</button>
  <button>?</button>
  <br>  
  <button>?</button>
  <button>?</button>
  <button>?</button>  

</div>

<h1 id="score_x">0</h1>
<button id="restart">Restart Game</button>
<h1 id="score_o">0</h1>

<textarea id="log">[Log content goes here...]</textarea>
Fin