-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.48 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Super Memory</title>
<link rel="stylesheet" href="styles.min.css" />
<link rel="stylesheet" href="confetti.css" />
</head>
<body>
<div class="container1">
<h1 class="neon neon-blue">
<span class="blinking-char">S</span>uper
<span class="blinking-char">M</span>emory
</h1>
</div>
<div class="container2">
<div class="memory-game">
<!-- Generierte karten -->
</div>
</div>
<div class="container3">
<p class="neon neon-green">Tries left:</p>
<div id="attempts" class="attempts-counter">
<span class="counter-text">4</span>
</div>
</div>
<div class="container4">
<!-- Leer -->
</div>
<div class="container5">
<a href="https://gerald-hasani.com/" class="neon-button"
>Zurück auf die Hauptseite</a
>
</div>
<div id="popup" class="popup hidden">
<div class="popup-content">
<p id="popup-message"></p>
<button id="restart-button">Neustarten</button>
</div>
</div>
<div id="confetti" class="hidden"></div>
<!-- Confetti div hidden initially -->
<script src="https://code.jquery.com/jquery-1.11.0.js"></script>
<script src="confetti.js"></script>
<script src="script-obfuscated.js"></script>
</body>
</html>