aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/site/game/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'site/game/index.html')
-rw-r--r--site/game/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/site/game/index.html b/site/game/index.html
new file mode 100644
index 0000000..d8f7c8a
--- /dev/null
+++ b/site/game/index.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="../style.css">
+ <title>Toggle</title>
+ </head>
+ <body>
+ <h1>Heat Toggle Demo</h1>
+ <nav>
+ <a href=".."><button>Home</button></a>
+ </nav>
+ <p>Try to beat the computer :)</p>
+ <button id="test_bttn" onclick="toggle_screen()">Test Button</button>
+ <main>
+ <section id="optionsScreen" class="screen">
+ <h2>Options</h2>
+ <div>
+ <label for="graphOrder">Select a number of vertices for a path:</label>
+ <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=1 max=30 placeholder="Enter a value (1-30)"></input>
+ </div>
+ <button onclick="playGame()">Play</button>
+ </section>
+ <section id="gameScreen" class="screen inactive">
+ <h2>Game</h2>
+ <div id="game">Loading...</div>
+ <script src="game.js"></script>
+ </section>
+ </main>
+ </body>
+</html>