diff options
Diffstat (limited to 'site/index.html')
| -rw-r--r-- | site/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..24d50d2 --- /dev/null +++ b/site/index.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Toggle Online</title> + </head> + <body> + <h1>Toggle Online</h1> + Try to beat the computer :) + <nav></nav> + <button onclick="foo()">Test</button> + <main> + <section id="options" class="screen"> + <h2>Options</h2> + <label for="graphOrder">Select a number of vertices for a path (0-100):</label> + <input type="number" name="graphOrder" id="graphOrder" defaultValue=7 min=0 max=100></input> + </section> + <section id="game" class="screen"> + <h2>Game</h2> + + <script src="game.js"></script> + </section> + </main> + </body> +</html> |
