]> git.cworth.org Git - lmno.games/blob - tictactoe/game.html
Tighten up the display of the PlayerInfo block
[lmno.games] / tictactoe / game.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8"/>
5     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
7     <title>Tic-tac-toe</title>
8
9     <link rel="stylesheet" href="/reset.css" type="text/css" />
10     <link rel="stylesheet" href="/style.css" type="text/css" />
11     <link rel="stylesheet" href="tictactoe.css" type="text/css" />
12
13     <script src="/react.js"></script>
14     <script src="/react-dom.js"></script>
15     <script type="module" src="tictactoe.js"></script>
16   </head>
17   <body>
18
19     <div id="page">
20
21       <h1>Tic Tac Toe</h1>
22
23       <p>
24         Just the classic game.
25       </p>
26
27       <div id="message-area">
28       </div>
29
30       <div id="tictactoe"></div>
31
32     </div>
33
34   </body>
35 </html>