-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.33 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>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Juego de memoria</title>
</head>
<body>
<main>
<section class="section1">
<h1>Juego de memoria</h1>
<table>
<tr>
<td><button id="0" onclick="destapar(0)"></button></td>
<td><button id="1" onclick="destapar(1)"></button></td>
<td><button id="2" onclick="destapar(2)"></button></td>
<td><button id="3" onclick="destapar(3)"></button></td>
</tr>
<tr>
</tr>
<td><button id="4" onclick="destapar(4)"></button></td>
<td><button id="5" onclick="destapar(5)"></button></td>
<td><button id="6" onclick="destapar(6)"></button></td>
<td><button id="7" onclick="destapar(7)"></button></td>
</tr>
<tr>
<td><button id="8" onclick="destapar(8)"></button></td>
<td><button id="9" onclick="destapar(9)"></button></td>
<td><button id="10" onclick="destapar(10)"></button></td>
<td><button id="11" onclick="destapar(11)"></button></td>
</tr>
<tr>
<td><button id="12" onclick="destapar(12)"></button></td>
<td><button id="13" onclick="destapar(13)"></button></td>
<td><button id="14" onclick="destapar(14)"></button></td>
<td><button id="15" onclick="destapar(15)"></button></td>
</tr>
</table>
</section>
<section class="section2">
<h2 id="aciertos" class="estadisticas">Aciertos 0</h2>
<h2 id="t-restante" class="estadisticas">Tiempo: 30 segundos</h2>
<h2 id="movimientos" class="estadisticas">Movimientos:</h2>
</section>
</main>
<footer>
<p>Juego programado por 👉 <a href="https://github.com/Alf40r/">Aph40r</a></p>
</footer>
<script src="main.js"></script>
</body>
</html>