<!DOCTYPE html>
<html lang="ro">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Remix Muzică</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Remix Muzică</h1>
    </header>
    <main>
        <input type="file" id="audioUpload" accept="audio/*">
        <button id="playButton">Redare</button>
        <button id="stopButton">Oprire</button>
        <div>
            <label for="speedControl">Viteză</label>
            <input type="range" id="speedControl" min="0.5" max="2" value="1" step="0.1">
        </div>
    </main>
    <script src="scripts.js"></script>
</body>
</html>
