-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory-game.html
57 lines (56 loc) · 1.93 KB
/
memory-game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>memory game</title>
<link type="text/css" rel="stylesheet" href = "css/memory-game.css">
</head>
<body>
<div class="toppen">
<!--Toppen typ idk-->
<a href="./">
<div class="back_button">
<p>Go Back</p>
</div>
</a>
<div class="name_game"><p>Memory Game!</p></div>
</div>
<div class="the_mains">
<!--mAIN 3 DIVVAR-->
<div class="svårhet">
<div class="theme0">
<p>THEMES</p>
</div>
<div class="theme1">
<img src="bilder/memory/pokemon.png" alt="">
</div>
<div class="theme2">
<img src="bilder/memory/pokemon.png" alt="">
</div>
<div class="theme3">
<img src="bilder/memory/pokemon.png" alt="">
</div>
</div>
<div class="TheGame">
<div class="ErrorText">
<p class="errors">ERRORS: <span id="errors">0</span></p>
</div>
<div class="board" id="board">
</div>
<div class="restart" id="BAJS">
<p>Restart</p>
</div>
</div>
<div class="stats">
<p class=early_title><span class="score_title">Scores:</span></p>
<p>Best Score: <span id="best_score"></span> Errors</p>
<p>Total Errors: <span id="error_total">0</span></p>
<p>Total Wins: <span id="total_wins"></span></p>
</div>
<script src="javascript/memory-gamy.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
</div>
<img id="vinst" class="vinst" src="bilder/memory/pris.png" alt="" style="display:none;">
</body>
</html>