-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Nunito:wght@300;500;600;800&display=swap"
rel="stylesheet"
/>
<title>BrainGames</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<button>start game</button>
<h1>Level 0</h1>
<div class="boxes">
<div class="box box-1" data-key="1">
<img src="/images/mbappe.jpg" alt="" class="" />
</div>
<div class="box box-2" data-key="2">
<img src="/images/messi.png" alt="" class="" />
</div>
<div class="box box-3" data-key="3">
<img src="/images/neymar.jpg" alt="" class="" />
</div>
<div class="box box-4" data-key="4">
<img src="/images/ronaldo.jpg" alt="" class="" />
</div>
<div class="box box-5" data-key="5">
<img src="/images/lewandowksi.jpg" alt="" class="" />
</div>
<div class="box box-6" data-key="6">
<img src="/images/suarez.jpg" alt="" class="" />
</div>
</div>
</div>
<footer>oghenetega esedere @ 2023</footer>
<audio src="./sounds/tom.wav" class="audio" data-key="1"></audio>
<audio src="./sounds/clap.wav" class="audio" data-key="2"></audio>
<audio src="./sounds/hihat.wav" class="audio" data-key="3"></audio>
<audio src="./sounds/kick.wav" class="audio" data-key="4"></audio>
<audio src="./sounds/openhat.wav" class="audio" data-key="5"></audio>
<audio src="./sounds/snare.wav" class="audio" data-key="6"></audio>
<audio src="./sounds/dun_dun_dun.wav" class="audio" data-key="7"></audio>
<script src="./app.js"></script>
</body>
</html>