-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simon Dice</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="header">
<h1>Simón dice</h1>
<h2 id="level">NIVEL: <span id="countLevel" class="level">1</span></h2>
</header>
<div class="gameboard">
<div id="azul" class="color azul left" data-color="azul"></div>
<div id="purpura" class="color purpura right" data-color="purpura"></div>
<div id="rojizo" class="color rojizo left" data-color="rojizo"></div>
<div id="esmeralda" class="color esmeralda right" data-color="esmeralda"></div>
</div>
<button id="btnEmpezar" class="btn btn-start" onclick="empezarJuego()">Empezar a jugar!</button>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./juego.js"></script>
</body>
</html>