-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.1 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
31
32
33
34
35
36
37
38
39
<!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="style.css" />
<link rel="shortcut icon" href="simon_logo.svg" type="image/x-icon" />
<title>Simon</title>
</head>
<body>
<!-- <section id="modal_loading">
<div class="modal_content">
<h1>Loading</h1>
</div>
</section> -->
<header>
<h1 id="level">level 1</h1>
<h1 id="score">highest : 0</h1>
</header>
<section class="boxes">
<button id="box_green" class="box"></button>
<button id="box_yellow" class="box"></button>
<button id="box_red" class="box"></button>
<button id="box_blue" class="box"></button>
</section>
<button id="start" class="start disable">Start</button>
<section id="modal_overlay" class="hide">
<div class="modal_content">
<h1 id="modal_message">You Lose</h1>
<button id="modal_button">try again</button>
</div>
</section>
<script src="main.js"></script>
</body>
</html>