-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (61 loc) · 2.42 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gruppera Ord</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="toast.css">
<link rel="stylesheet" href="splash.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>
<main>
<h1>Gruppera 4 ord 🐦⬛</h1>
<div class="toast" id="toast-top"></div>
<div class="correct-answers" id="correct-answers"></div>
<div class="grid-container" id="grid-container"></div>
<div id="message"></div>
<div class="failed-guesses hidden">
<h2>Felaktiga gissningar 🐁 🧪 </h2>
<div class="failed-guesses-text"></div>
</div>
<button id="shuffle-cards">Blanda korten</button>
<button id="new-game">Nytt spel</button>
<br>
<div class="difficulty-selection">
<label for="min-difficulty">Svårighet:</label>
<select id="difficulty-select">
<option value="x">Blandat</option>
<option value="1">Lätt</option>
<option value="2">Medium</option>
<option value="3">Svår</option>
</select>
</div>
</main>
<footer>
Ihophackat av Hagge 🐝
</footer>
<div id="splash-screen" class="splash-screen">
<div class="splash-content">
<div id="confetti-container"></div>
<h1>Snyggt jobbat! 🎉</h1>
<div class="img-wrap">
<img alt="firande djur"
src="https://media2.giphy.com/media/MNKo1E8MO85bfx6U2n/giphy.gif?cid=6c09b952fnsq5p8r6trgbw6rhpn7g01jy0ylnjsma05ehox4&ep=v1_internal_gif_by_id&rid=giphy.gif&ct=g">
</div>
</div>
</div>
<script src="games.js"></script>
<script src="main.js"></script>
<script src="toast.js"></script>
<script src="animations.js"></script>
</body>
</html>