-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 821 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 821 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game</title>
<script src='js/functions.js' defer></script>
<script src='js/dragndrop.js' defer></script>
<script src='js/script.js' defer></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="top-wrapper">
<div id="field-wrapper"></div>
<div id='controls-wrapper'>
<p>Size<input type="number" min=2 max=10 value=3 id="size-inp"></p>
<p>Speed<input type="range" min=1 max=10 value=5 id="speed-inp"><span class="speed-val"></span>s</p>
<p>
<button id="start-btn">start</button>
<button id="refresh-btn">refresh</button>
<button id="check-btn" disabled>check</button>
</p>
</div>
</div>
<div id="answers-wrapper">
</div>
</body>
</html>