Files
binaural-beats-generator/popup.html
2023-08-12 22:37:09 +00:00

13 lines
386 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Binaural Beats Generator</h1>
<p>Customize the frequency of the binaural beats:</p>
<input type="range" min="1" max="1000" value="440" class="slider" id="frequencySlider">
<p id="frequencyDisplay">Frequency: 440 Hz</p>
<script src="popup.js"></script>
</body>
</html>