-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/app.css" />
<title>Problema del Barrendero</title>
</head>
<body>
<div id="wrapper">
<p id="game-title">Problema del Barrendero</p>
<div>
<div id="size-bar">
<input type="range" id="game-height" min="2" max="10"></input>
<label for="game-height">Alto</label>
<input type="range" id="game-width" min="2" max="10"></input>
<label for="game-width">Ancho</label>
</div>
<div id="reset-button">
<button id="reset" class="button" type="button">Borrar</button>
</div>
<div id="reboot-button">
<button id="reboot" class="button" type="button">Reiniciar</button>
</div>
<div id="random-click">
<button id="random" class="button" type="button">Aleatorio</button>
</div>
</div>
<div id="field">
<!-- JS will automatically insert nodes -->
</div>
<div id="instructions">
<p>Sosteniendo la tecla <b><code>Shift</code></b> y haciendo click, se
puede desactivar los cuadros.</p>
<p>Sosteniendo la tecla <b><code>Control | Command</code></b> y haciendo click, se
puede activar los cuadros.</p>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>