blob: 24d50d2aa567c727aa6896bbafc7992c8550c3ca (
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="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>
|