-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 914 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Simon Game</title>
<link rel="stylesheet" href="style.css" />
</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()">
🕹 Press to start 🕹
</button>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.0/sweetalert.min.js"></script>
<script src="app.js"></script>
</body>
</html>