mirror of
https://github.com/elder-plinius/binaural-beats-generator.git
synced 2026-02-12 16:52:50 +00:00
13 lines
386 B
HTML
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> |