-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Simon Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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="outer-circle">
<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>