-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (49 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simon Says</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Original+Surfer&effect=emboss' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<audio id="clip1">
<source src="https://s3.amazonaws.com/freecodecamp/simonSound1.mp3"></source>
</audio>
<audio id="clip2">
<source src="https://s3.amazonaws.com/freecodecamp/simonSound2.mp3"></source>
</audio>
<audio id="clip3">
<source src="https://s3.amazonaws.com/freecodecamp/simonSound3.mp3"></source>
</audio>
<audio id="clip4">
<source src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3"></source>
</audio>
</head>
<body>
<div id="instructions"><strong>Power:</strong></div>
<div id="instructions">Turn on the power and then click <strong>start</strong> to start the game</div><br>
<div id="instructions"><strong>Strict:</strong></div>
<div id="instructions">Strict Mode means if you make a mistake you have to start all over again</div>
<div id="outer=cirlce">
<div id="topleft"></div>
<div id="topright"></div>
<div id="bottomleft"></div>
<div id="bottomright"></div>
<div id="inner-circle">
<div id="title" class="font-effect-emboss">SIMON!</div>
<div id="switches">
<input type="checkbox" class="toggle" id="on">
<button class="button" id="start">Start</button>
<input type="checkbox" class="toggle" id="strict">
</div>
<div class="text1">
<span>POWER</span><span>STRICT</span>
</div>
<div id="turn"></div>
<div class="text2">COUNT</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>
<!-- Improve upon the game by changing the toggle switches to look more like the real game>