├── README.md
├── index.html
├── index.js
├── package.json
├── tic-tac-tweet.gif
├── tweet.html
└── tweet.png
/README.md:
--------------------------------------------------------------------------------
1 | # Tic-Tac-Tweet
2 |
3 | Tic Tac Toe in a Tweet - A simplified version of the classic game in exactly 140 characters of HTML and JavaScript. The playfield is represented by 3x3 text-input fields. Instead of using `x` and `o`, this version uses the binary representations `0` and `1`.
4 |
5 | ### Original Tweet
6 |
7 | https://twitter.com/aemkei/status/625784268996890624
8 |
9 | 
10 |
11 | ### Demo
12 |
13 | [PLAY THE DEMO](http://rawgit.com/aemkei/tic-tac-tweet/master/tweet.html)!
14 |
15 | ### Instructions
16 |
17 | Click a field to set the next mark. The game will only allow a new placement if the field was empty. Once the player marked three fields (horizontal, vertical, or diagonal) and alert will show the winner.
18 |
19 | ### Gameplay Video
20 |
21 | 
22 |
23 | ### Tweet Sized HTML (140 characters)
24 |
25 | ```html
26 |