2024-11-13 09:56:57 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Nice Noise!</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="sound-controls">
|
|
|
|
<div class="sound">
|
|
|
|
<button id="toggle">Play / Pause</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div class="footer-content">
|
|
|
|
<p><button id="attributions-button">Audio Attributions</button></p>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<div id="attribution-modal" class="modal">
|
|
|
|
<div class="modal-content">
|
|
|
|
<span class="close-button">×</span>
|
|
|
|
<h2>Audio Attributions</h2>
|
2024-11-13 15:30:06 +00:00
|
|
|
<ul id="audio-attribution-list">
|
2024-11-13 09:56:57 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|