-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (51 loc) · 1.91 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
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memory Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p id="round">game: remember the sequence</p>
<!-- radio -->
<div id="settings">
<p id> Choose your level </p>
<label class="radio">
<input type="radio" name="r" value="2" onclick="choose_level(2)" class = "choice">
<span>Easy</span>
</label>
<label class="radio">
<input type="radio" name="r" value="3" onclick="choose_level(3)" checked class = "choice">
<span>Medium</span>
</label>
<label class="radio">
<input type="radio" name="r" value="4" onclick="choose_level(4)" class = "choice">
<span>Hard</span>
</label>
<label class="radio">
<input type="radio" name="r" value="5" onclick="choose_level(5)" class = "choice">
<span>Ultra Hard</span>
</label>
<label class="radio">
<input type="radio" name="r" value="10" onclick="choose_level(10)" class = "choice">
<span>Elon Musk</span>
</label>
<ul>
<li><span class="btn-1" id="start_game" onclick="start_game()">start new game</span></li>
</ul>
</div>
<!-- buttons -->
<div id="buttons_block">
<a href="#" class="square_btn" onclick="pressed(0)" id="button0"></a>
<a href="#" class="square_btn" onclick="pressed(1)" id="button1"></a>
<a href="#" class="square_btn" onclick="pressed(2)" id="button2"></a>
<a href="#" class="square_btn" onclick="pressed(3)" id="button3"></a>
<a href="#" class="square_btn" onclick="pressed(4)" id="button4"></a>
<a href="#" class="square_btn" onclick="pressed(5)" id="button5"></a>
<a href="#" class="square_btn" onclick="pressed(6)" id="button6"></a>
<a href="#" class="square_btn" onclick="pressed(7)" id="button7"></a>
<a href="#" class="square_btn" onclick="pressed(8)" id="button8"></a>
</div>
</body>
</html>
<script src="code.js"></script>