-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (32 loc) · 1.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snake</title>
</head>
<body>
<h1>Snake</h1>
<p>Puntaje: <span id="puntos">0</span></p>
<div class="content">
<canvas id="game"></canvas>
<div class="instrucciones">
<h2>Intrucciones</h2>
<p>Para mover use las teclas direccionales</p>
<ul>
<li><span>Arriba</span> ↑</li>
<li><span>Derecha</span> →</li>
<li><span>Izquierda</span> ↓</li>
<li><span>Abajo</span> ←</li>
</ul>
<p>Utilice la tecla "Enter" para iniciar ó pausar</p>
<p>Utilice la tecla "R" para reiniciar la partida</p>
<h2>Configuración</h2>
<span>Velocidad: </span>
<input type="range" id="speed" min="40" max="200">
<input type="number" id="speedNumber" value="0" min="40" max="200">
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>