-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.33 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>maze</title>
<link href="https://fonts.googleapis.com/css?family=Signika" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form>
<ul class="userInput">
<li>
<label for="heigthIn">heigth</label>
<input type="number" id="heigthIn" value="20">
</li>
<li>
<label for="widthIn">width</label>
<input type="number" id="widthIn" value="20">
</li>
<li>
<label for="cellIn">cell</label>
<input type="number" id="cellIn" value="5">
</li>
<li>
<label for="wallIn">wall</label>
<input type="number" id="wallIn" value="3">
</li>
<li>
<label for="startX">startX</label>
<input type="number" id="startX" value="5">
</li>
<li>
<label for="startY">startY</label>
<input type="number" id="startY" value="5">
</li>
<li>
<a href="#" id="newMaze">new</a>
</li>
<li>
<a href="#" id="newRnd">rnd</a>
</li>
<li>
<a href="#" id="delMaze">del</a>
</li>
<li>
<a href="#" id="dCanvas" download="maze.png">print</a>
</li>
</ul>
</form>
<ul class="mazes"></ul>
<script src="maze.js"></script>
</body>
</html>