-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (20 loc) · 909 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<div class="gameboard">
<div id="azul" class="color azul izquierda" data-color="azul"></div>
<div id="morado" class="color morado derecha" data-color="morado"></div>
<div id="naranja" class="color naranja izquierda" data-color="naranja"></div>
<div id="verde" class="color verde derecha" data-color="verde"></div>
<button id="botonEmpezar" class="btn-start">Empezar</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js" integrity="sha256-ZRWH0Wx0GVGDUFw4yx1NEG+KiX9OmQTSLn5gpAon8bM=" crossorigin="anonymous"></script>
<script src="juego.js"></script>
</body>
</html>