-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimon-dice.html
More file actions
26 lines (25 loc) · 821 Bytes
/
simon-dice.html
File metadata and controls
26 lines (25 loc) · 821 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Simon Dice</title>
<link rel="stylesheet" href="simon-design.css">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body>
<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>
<script src="simon-logic.js"></script>
</body>
</html>
<!--
tupeleteria.co
zatos.com.co
-->