-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormal.html
More file actions
46 lines (44 loc) · 1.76 KB
/
normal.html
File metadata and controls
46 lines (44 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Dice</title>
<link rel="stylesheet" href="estiloNH.css">
<script src="ranking.js"></script>
<script defer src="scriptN.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Honk&family=Rajdhani:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
</head>
<body>
<h1 id="round">Ronda 1</h1>
<div id="panel">
<div class="ranking">
<p>Ranking:</p>
</div>
<div id="panelSEC">
<div class="red"></div>
<div class="green"></div>
<div class="yellow"></div>
<div class="blue"></div>
</div>
<div class="score">
<p>Puntuacion:</p>
<p class="puntos">0</p>
</div>
</div>
<div id="botonera">
<button onclick="location.href='index.html'" id="inicio">Inicio</button>
<button id="howtoplay">¿Cómo jugar?</button>
<button id="inicioN">Comenzar</button>
</div>
<audio src="sonidos/rojo.mp3" id="sound_rojo" preload="auto"></audio>
<audio src="sonidos/verde.mp3" id="sound_verde" preload="auto"></audio>
<audio src="sonidos/amarillo.mp3" id="sound_amarillo" preload="auto"></audio>
<audio src="sonidos/azul.mp3" id="sound_azul" preload="auto"></audio>
<audio src="sonidos/lose.mp3" id="sound2" preload="auto"></audio>
</body>
</html>