-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhowtoplay.html
More file actions
80 lines (68 loc) · 3.12 KB
/
howtoplay.html
File metadata and controls
80 lines (68 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How To Play - The Sound Of Everything</title>
<link rel="icon" href="assets/tsoe.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<<img src="assets/tsoe.png" alt="TSOE Mascot Logo" class="mascot-logo">!-- You can copy the header from other pages if you want it to be consistent -->
<h1>About</h1>
<nav>
<a href="index.html">The Sound Game</a>
<a href="soundboard.html">Sound Explorer</a>
<a href="virtual_keyboard.html">ASMR Keyboard</a>
</nav>
</header>
<main class="how-to-play-content">
<section>
<h2>The Sound Game</h2>
<p>Listen to the mystery sound and try to guess what it is by clicking on the icons.</p>
<ul>
<li>Use the "Filter" options to select sound categories you want to play with.</li>
<li>Click "Start Game" to begin. A sound will play automatically.</li>
<li>Click on the sound icon you think matches the mystery sound.</li>
<li>If you guess correctly, the icon disappears, and a new sound plays.</li>
<li>If you guess incorrectly, Try again!</li>
<li>Your score and the time elapsed are displayed.</li>
</ul>
</section>
<section>
<h2>Sound Explorer</h2>
<p>Explore and play all available sounds.</p>
<ul>
<li>Use the "Filter" options to narrow down the sounds by category.</li>
<li>Click on any icon to hear its sound.</li>
</ul>
</section>
<h2>ASMR Keyboard</h2>
<p>Record and play ASMR sounds.</p>
<ul>
<li>Use the "Filter" options to narrow down the sounds by category.</li>
<li>Click on any icon to hear its sound.</li>
</ul>
</section>
</main>
<li>Click on an icon/sound and place it on the pad.</li>
<li>Choose a time frame for the loop.</li>
<li>Click "Record" to start recording.</li>
<li>Play the sounds by using the keyboard and record them onto the loop.</li>
<li>The loop will keep running and recording as long as you play the sounds.</li>
<li>Click "Stop" to save the loop.</li>
<li>You can download the loop as a .wav file.</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 The Sound Of Everything</p>
<p><a href="howtoplay.html">About</a></p>
</footer>
<script src="sound-data.js"></script>
<!-- Add any specific JS for this page if needed, though likely not for a static info page -->
</body>
</html>