-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.37 KB
/
Copy pathindex.html
File metadata and controls
47 lines (46 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/memory.css" />
<title>Memory game</title>
</head>
<body id="body">
<main>
<div class="main_container">
<div id="gameStats">
<div id="highscore_container">
<h1>Highscore: <span id="highscore">0</span></h1>
</div>
<div id="score_container">
<h1>Score: <span id="score">0</span></h1>
</div>
<div id="round_container">
<h1>Round: <span id="round">1</span></h1>
</div>
</div>
<div id="game_container">
<div id="countdown_container">
<span id="time_label">Time</span>
<h1 id="countdown">?</h1>
</div>
<div id="game_buttons">
<div class="box box-0">Y</div>
<div class="box box-1">B</div>
<div class="box box-2">X</div>
<div class="box box-3">A</div>
</div>
<div id="game_controls">
<ul>
<li id="start">Start</li>
<li id="reset">Reset</li>
</ul>
</div>
</div>
</div>
</main>
<script src="/memory.js"></script>
</body>
</html>