diff options
Diffstat (limited to 'site/index.html')
| -rw-r--r-- | site/index.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/site/index.html b/site/index.html index 5497e9a..c9ab08a 100644 --- a/site/index.html +++ b/site/index.html @@ -3,22 +3,24 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Toggle Online</title> + <link rel="stylesheet" href="style.css"> + <title>Toggle</title> </head> <body> - <h1>Toggle Online</h1> - Try to beat the computer :) + <h1>Heat Toggle Demo</h1> + <p>Try to beat the computer :)</p> <nav></nav> - <button onclick="playGame()">Test</button> + <button id="test_bttn" onclick="toggle_screen()">Test Button</button> <main> - <section id="options" class="screen"> + <section id="optionsScreen" class="screen"> <h2>Options</h2> - <label for="graphOrder">Select a number of vertices for a path (1-100):</label> - <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=1 max=100></input> + <label for="graphOrder">Select a number of vertices for a path (1-30):</label> + <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=1 max=30></input> + <button onclick="playGame()">Play</button> </section> - <section id="game" class="screen"> + <section id="gameScreen" class="screen inactive"> <h2>Game</h2> - + <div id="game">Loading...</div> <script src="game.js"></script> </section> </main> |
