SoundGas / src /public /index.html
R-Kentaren's picture
Upload 3 files
680bb69 verified
raw
history blame contribute delete
855 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soundgasm Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Soundgasm Search</h1>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search for audio...">
<button onclick="performSearch()">Search</button>
</div>
<div id="results" class="results-container"></div>
<div id="player" class="player-container">
<audio id="audioPlayer" controls style="display: none;">
Your browser does not support the audio element.
</audio>
</div>
</div>
<script src="script.js"></script>
</body>
</html>