-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.54 KB
/
index.html
File metadata and controls
88 lines (78 loc) · 2.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frog Hunter - memory game</title>
<link rel="icon" type="image/x-icon" href="Images/favicon.ico">
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
</head>
<body>
<header class="wrap">
<h1>Frog Hunter</h1>
<h2>Test Your Memory. Hunt the Frogs.</h2>
</header>
<main class="game wrap">
<div class="controls">
<div class="controls-main">
<button class="button">
<span class="button-text">Restart</span>
</button>
<div class="state">
<div class="moves">Reveals: 0</div>
<div class="timer countdown-timer">Time left: 00:00</div>
</div>
</div>
<div class="levels">
<button class="level-btn active" data-pairs="6">Level 1</button>
<button class="level-btn" data-pairs="8">Level 2</button>
<button class="level-btn" data-pairs="10">Level 3</button>
</div>
</div>
<div class="container"></div>
<div class="winner">
<div class="winner-container">
<img
src="Images/celebration.png"
alt="Frog celebration"
class="frog-icon" />
<p class="winner-title">You won!</p>
<p class="winner-moves"></p>
<p class="winner-time"></p>
<button class="button">
<span class="button-text">New game</span>
</button>
</div>
</div>
<div class="timeout">
<div class="timeout-container">
<img
src="Images/mind-blown.png"
alt="Frog mind blown"
class="frog-icon" />
<p class="timeout-title">Oops! Time’s Up</p>
<p class="timeout-text">So close!</p>
<p class="timeout-text">You ran out of time before finding all the pairs.</p>
<p class="timeout-text">Try again?</p>
<button class="button">
<span class="button-text">New game</span>
</button>
</div>
</div>
</main>
<footer class="wrap">
<div>
<p>
Stickers created by
<a href="https://www.flaticon.com" target="_blank" title="Flaticon"
>Flaticon</a
>
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>