-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.7 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sound Machine</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="app">
<header>
<h1>Sound Machine</h1>
<p>Explore the magic of the sounds.</p>
</header>
<div class="visual"></div>
<div class="pads">
<div class="pad1">
<audio class="sound" src="./sounds/Ambience SFX Radio Static Interference With Glitchy Voices_SFX.wav"></audio>
</div>
<div class="pad2">
<audio class="sound" src="./sounds/CB Radio On, Static, Off.wav"></audio>
</div>
<div class="pad3">
<audio class="sound" src="./sounds/Communication, Dead Air, Static, Loop 2.wav"></audio>
</div>
<div class="pad4">
<audio class="sound" src="./sounds/Communication, Dead Air, Static, Loop.wav"></audio>
</div>
<div class="pad5">
<audio class="sound" src="./sounds/Computer Monitor Tone, High Pitch, Static.wav"></audio>
</div>
<div class="pad6">
<audio class="sound" src="./sounds/Beat, Glitch, Hip Hop, Loop.wav"></audio>
</div>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>