-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Simon Says</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
media="screen"
href="./css/main.css"
/>
</head>
<body class="fondo-simon-dice">
<header>
<h1 id="titulo" class="oculto">SIMON SAYS</h1>
<div class="informacion">
<span id="numero-de-rondas" class="texto oculto" ></span>
<span id="estado" class="texto oculto" ></span>
</div>
</header>
<main >
<button type="button" id="btn-jugar">Jugar</button>
<audio src="sounds/game-start-6104.mp3" id="sonido-comienzo-del-juego"></audio>
<audio src="sounds/negative_beeps-6008.mp3" id="sonido-perdedor"></audio>
<div class="contenedor-botones">
<button type="button" id="btn-verde" class="botones"></button>
<audio src="sounds/triangle-beep-short-4-185307.mp3" id="sonido-btn-verde"></audio>
<button type="button" id="btn-rojo" class="botones"></button>
<audio src="sounds/triangle-beep-short-5-185308.mp3" id="sonido-btn-rojo"></audio>
<button type="button" id="btn-azul" class="botones"></button>
<audio src="sounds/triangle-beep-short-6-185309.mp3" id="sonido-btn-azul"></audio>
<button type="button" id="btn-amarillo" class="botones"></button>
<audio src="sounds/triangle-beep-short-8-185311.mp3" id="sonido-btn-amarillo"></audio>
</div>
</main>
<script src="main.js"></script>
</body>
</html>