-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="media/favicon.ico">
<title>Find The Pair</title>
</head>
<body>
<header>
<button id="header-pause-btn" hidden></button>
<button id="header-sound-btn"></button>
<h3 id="timer">--:--</h3>
</header>
<main>
<section class="main menu" id="main-menu">
<div class="main-submenu" style="display: flex">
<button id="level-select">Select level</button>
</div>
<div class="level-selection">
<button class="level-btn 1">1</button>
<button class="level-btn 2">2</button>
<button class="level-btn 3">3</button>
<button class="level-btn 4">4</button>
<button class="level-btn 5">5</button>
<button id="back-to-main-submenu">Back to main</button>
</div>
<div class="start-game">
<button id="start-game-btn">Start Game</button>
<button id="back-to-level-selection">Back</button>
</div>
</section>
<section class="pause menu" id="pause-menu">
<h3>Paused</h3>
<button id="menu-pause-btn">Resume</button>
<button id="restart-game-btn">Restart</button>
<button>Settings</button>
<button id="back-to-main-submenu-paused">Back to main menu</button>
</section>
<section class="field">
</section>
<audio id="audio" src="media/ost/night-in-kyoto.mp3"></audio>
</main>
<footer>
</footer>
<script src="main.js"></script>
<script src="buttons.js"></script>
</body>
</html>