-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.15 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.15 KB
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 Says Game</title>
<link rel="icon" href="/img/simonLogo.png"/>
<link rel="stylesheet" href="style.css" class="rel" />
</head>
<body>
<audio src="./sounds/bg-music .mp3" class="bg-music" controls></audio>
<audio src="./sounds/error-music.mp3" class="error-music" controls></audio>
<div class="top-title">
<img src="./img/simonGameLogo.gif" width="40px" height="40px" />
<h1> Simon Says Game</h1>
</div>
<h2>press any key to start</h2>
<div class="btn-container">
<div class="line-one">
<div class="btn red" type="button" id="red">1</div>
<div class="btn yellow" type="button" id="yellow">2</div>
</div>
<div class="line-two">
<div class="btn green" type="button" id="green">3</div>
<div class="btn purple" type="button" id="purple">4</div>
</div>
</div>
<button class="restart" onclick="reset()">Start</button>
<script src="app.js"></script>
</body>
</html>