-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 867 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simon Game</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="assets/icon.jpg">
</head>
<body>
<h1>Simon Says Game</h1>
<h2>Press ENTER to start </h2>
<p>High Score: 0</p>
<div class="btn-container">
<div class="line-one">
<div class="btn red" type="button" id="red">1</div>
<div class="btn green" type="button" id="green">2</div>
</div>
<div class="line-two">
<div class="btn yellow" type="button" id="yellow">3</div>
<div class="btn blue" type="button" id="blue">4</div>
</div>
</div>
<p>made by: sachinandan</p>
<script src="app.js"></script>
</body>
</html>