-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.08 KB
/
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
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/styles.css" />
<title>Simon Says</title>
</head>
<body>
<main>
<!--TODO: Add the missing information in the h1 heading -->
<h1 class="js-heading">Simon Says</h1>
<section class="game-controls">
<!--TODO: Add the start button -->
<button class="start-button js-start-button">start</button>
<span class="status hidden js-status"></span>
</section>
<section class="pad-container unclickable js-pad-container">
<div class="pad pad-red js-pad-red" data-color="red"></div>
<div class="pad pad-green js-pad-green" data-color="green"></div>
<div class="pad pad-blue js-pad-blue" data-color="blue"></div>
<div class="pad pad-yellow js-pad-yellow" data-color="yellow"></div>
</section>
</main>
<script src="./src/index.js"></script>
</body>
</html>