-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="description" content="simon game remember the color sequences">
<meta name="author" content="JS developer">
<title>simon_game</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="level-title">Press any key to start</h1>
<button id="start-button">Start</button>
<div class="container">
<div class="row">
<div id="green" class="btn green">
</div>
<div id="red" class="btn red">
</div>
</div>
<div class="row">
<div id="yellow" class="btn yellow">
</div>
<div id="blue" class="btn blue">
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>