-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 1.79 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Rajdhani:500,600,700" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Document</title>
</head>
<body>
<main>
<h1>The Maze Digger!</h1>
<form action="./app.js" method='POST'>
<ul>
<li>
<p>Block Size <br>
<input id='size' type="number" name='blockSize' value='10'>
</p>
</li>
<li>
<p>Block Columns <br>
<input id='columns' type="number" name='blockColumn' value='40'>
</p>
</li>
<li>
<p>Block Rows <br>
<input id='rows' type="number" name='blockRow' value='40'>
</p>
</li>
<li>
<p>Speed < 100<br>
<input id='speed' type="number" name='speed' value='100' min = '1' max='100'>
</p>
</li>
<li>
<p>Supports Girth <br>
<input id='border' type="number" name='borderGirth' value='2'>
</p>
</li>
<li class='btnBox'>
<input id='dig' class='btn' type="button" value='Dig!!'>
</li>
<li class='btnBox' id='playBox'>
<input id='play' class='btn' type="button" value='Play!!'>
</li>
<li class='btnBox' id='waitBox'>
<input id='wait' class='btn' type="button" value='Wait.. '>
</li>
</ul>
</form>
<canvas></canvas>
</main>
<script type='text/javascript' src='./app.js'></script>
</body>
</html>