A collection of browser-based puzzle games.
- Flood-It - Color the whole board in as few moves as possible
- Word Search - Find all hidden words in the grid
Open index.html in a web browser to start playing.
# Using Python
python3 -m http.server 8000
# Using PHP
php -S localhost:8000Then open http://localhost:8000
games/
├── index.html # Dashboard
├── games/
│ ├── flood-it/ # Flood-It game
│ └── word-search/ # Word Search game
└── shared/
├── css/ # Shared styles
└── js/ # Shared JavaScript
- Pure HTML/CSS/JavaScript (no frameworks)
- LocalStorage for progress/score saving
- Responsive design for mobile and desktop
MIT