-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 1.29 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mixed Memory</title>
<link rel="stylesheet" href="./styles.css" />
<script src="./index.js" defer></script>
<script src="./helpers.js"></script>
</head>
<body>
<div id="header">
<div id="headline">
</div>
<div id="countdown">
<h1>Mixed Memory</h1>
</div>
<div id="headscore">
<!-- <h3>Highscore</h3> -->
</div>
</div>
<div id="main">
<div id="options">
<p>Anzahl der Paare:</p>
<select id="selectpairs">
</select>
<p>Wähle dein Deck:</p>
</div>
<div id="content">
</div>
<div id="highscore">
<p id="message"></p>
<h2 id="paare"></h2>
<p id="actions"></p>
<h2 id="zuege"></h2>
</div>
</div>
<div id="footer">
<div id="submit">
<button type="button" id="startgame" class="blocked">Neues Spiel</button>
</div>
<div id="lowmid">
<div id="found">
</div>
</div>
</div>
</body>
</html>