-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (46 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Simon </title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io (1)/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io (1)/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io (1)/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
</head>
<body>
<h1 id="level-title">Press on Background to Start Game</h1>
<div class="container">
<div lass="row">
<div type="button" id="green" class="btn green">
</div>
<div type="button" id="red" class="btn red">
</div>
</div>
<div class="row">
<div type="button" id="yellow" class="btn yellow">
</div>
<div type="button" id="blue" class="btn blue">
</div>
</div>
</div>
<div class="container">
<h1 id="level-title" > How to play! </h1>
<ol>
<li>Click on Background to Start Game.</li>
<li>Simon will give the first signal. Repeat the signal by pressing the same color lens.</li>
<li>Simon will duplicate the first signal and add one. Repeat these two signals by pressing the same color lenses, in order.</li>
<li>Simon will duplicate these first two signals and add one.</li>
<li>Continue playing as long as you can repeat each sequence of signals correctly.</li>
<li>If you fail to repeat a sequence exactly, Simon responds with a "RAZZ" sound. This means you've lost, and the sequence of signals ends.</li>
<li>Wait for 1sec game will restart automatically.</li>
</ol>
<span>Hope you enjoy this game.<br>I am Naresh signing out </span>
</div>
<footer><a href="mailto:[email protected]">@naresh_choudhary</a></footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="game.js"></script>
</body>
</html>