-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 847 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<title>Simon Dice</title>
</head>
<body>
<div class="gameboard">
<div id="blue" class="color blue left" data-color="blue"></div>
<div id="violet" class="color violet right" data-color="violet"></div>
<div id="orange" class="color orange left" data-color="orange"></div>
<div id="green" class="color green right" data-color="green"></div>
<button id="btnStart" class="btn-start" onclick="startGame()">Empezar a jugar!</button>
</div>
<!-- Scripts -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./scripts/index.js"></script>
</body>
</html>