-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (63 loc) · 1.7 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
59
60
61
62
63
64
65
<!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" />
<meta
name="description"
content="Juego Simon Dice, vamos a ver como está tu memoria!!."
/>
<link rel="stylesheet" href="css/style.css" />
<title>Simon Dice</title>
</head>
<body>
<header>
<nav>
<ul>
<h1>Simon Dice Game</h1>
</ul>
</nav>
</header>
<main>
<section class="container">
<div class="gameboard">
<div
id="celeste"
class="color celeste left"
data-color="celeste"
></div>
<div
id="violeta"
class="color violeta right"
data-color="violeta"
></div>
<div
id="naranja"
class="color naranja left"
data-color="naranja"
></div>
<div id="verde" class="color verde right" data-color="verde"></div>
<button id="btnEmpezar" class="btn-start" onclick="empezarJuego()">
Empezar a jugar!
</button>
</div>
</section>
<section class="explanation">
<h2>Explicación</h2>
<p>
Es un juego de memoria donde debes recordar cuales fueron los colores
que se iluminaron para luego seleccionarlos tú
</p>
<p>Son 10 niveles.</p>
<p>¿Ganarás?</p>
</section>
</main>
<footer>
<p>
Todos los derechos reservados - Curso Fundamentos de Javascript - Platzi
</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>