-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.31 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Says Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Simon Says Game</h1>
<h2>Rule: Press the buttons in the right order<br>Press Spacebar to start</h2>
<!-- added boxes -->
<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>
<!-- added spacebar -->
<div class="spacebar">
<button class="virtual-key" id="virtual-spacebar" type="button">
<a>Spacebar</a>
</button>
</div>
<!-- added my name and linkedin link -->
<div class="credits">
<a> Made by: Shivendra Patel - </a>
<a href="https://www.linkedin.com/in/shivendra-patel-31845b212/">Linkedin</a>
</div>
<script src="script.js"></script>
<!-- added mp3 player for gameOverSound -->
<audio id="gameOverSound" volume="1000" src="Buzzer.mp3"></audio>
</body>
</html>