Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • solution
2 results

index.html

Blame
  • index.html 367 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>Step</button>
      </div>
    
    
      <script src="gameOfLife.js"></script>
      <script src="render.js"></script>
      <script>
        gameOfLife.emptyBoard()
        render()
      </script>
    
    </html>