-
Notifications
You must be signed in to change notification settings - Fork 0
/
inicio.html
57 lines (57 loc) · 2.72 KB
/
inicio.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<section class="section1">
<h1>Juego de Memoria</h1>
<table>
<tr> <!--Primeral Fila-->
<!--Columnas-->
<td><button id="0" onclick="destapar(0)"></button></td> <!--Le estamos dicioendo en el oneclick que cuando le de clic al boton
entonces se ejecute una accion, en este caso destapar es una funcion que tenemos y el 0 es el valor del id, osea lo que le vamos a pasar-->
<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> <!--Primeral Fila-->
<!--Columnas-->
<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> <!--Primeral Fila-->
<!--Columnas-->
<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> <!--Primeral Fila-->
<!--Columnas-->
<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: 0</h2>
</section>
</main>
<footer>
<p>Juego programado por 👉<a href="https://www.instagram.com/cris.lo.produce/">Cristian Alejandro Arroyave</a></p>
</footer>
<script src="main.js"></script>
</body>
</html>