blob: 5497e9af7716eccfe997e3fb88fda7d2a21e3c98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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="playGame()">Test</button>
<main>
<section id="options" 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>
</section>
<section id="game" class="screen">
<h2>Game</h2>
<script src="game.js"></script>
</section>
</main>
</body>
</html>
|