-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (50 loc) · 1.17 KB
/
index.html
File metadata and controls
65 lines (50 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game</title>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div class="content">
<h1> Memory Game </h1>
<div class="stats-box">
<h3> Progress:
<span id="result"> </span>
</h3>
<h3> Attempts:
<span id="attempt"></span>
</h3>
<h3> Timer:
<span id="timer"></span>
</h3>
</div>
<div class="grid"></div>
<div class="button-container">
<button
type="button"
id="reset"
class="button"
onclick="reset()"
> reset
</button>
<!-- <button
type="button"
id="play"
class="button"
onclick="play()"
> play -->
</button>
<button
type="button"
id="pause"
class="button"
onclick="pause()"
> pause
</button>
</div>
</div>
</body>
<script src="app.js" charset="utf-8"></script>
</html>