-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 956 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
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Says Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<!-- Header Section -->
<article id="head">
<div>
<h1>Simon Says Game</h1>
<h2>Press any key to start</h2>
</div>
</article>
<!-- Buttons Section -->
<article>
<div class="btn-container">
<div class="btn green" id="green"></div>
<div class="btn red" id="red"></div>
<div class="btn yellow" id="yellow"></div>
<div class="btn blue" id="blue"></div>
</div>
</article>
<!-- Highscore Display -->
<h1 id="highscore"></h1>
</main>
<script src="app.js"></script>
</body>
</html>