Skip to content
Snippets Groups Projects
Select Git revision
  • 00fe2d79ba7752bfa6bea2de936d72187b62241f
  • master default protected
  • solution
3 results

index.html

Blame
  • index.html 426 B
    <!DOCTYPE html>
    <html>
      <title>Conway's Game of Life</title>
    
      <h1>Conway's Game of Life</h1>
      <div id="game" style="font-family: monospace; cursor: pointer;">
      </div>
      <div>
          <button onclick="javascript: { gameOfLife.stepGame(); render(); }">Step</button>
      </div>
    
    
      <script src="gameOfLife.js"></script>
      <script src="render.js"></script>
      <script>
        gameOfLife.emptyBoard()
        render()
      </script>
    
    </html>