loop/node-server/assets/Roman.html
2025-05-30 15:36:48 +02:00

52 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>To Hide Is To Be Seen</title>
<link rel="stylesheet" href="stylesrom.css" />
</head>
<body>
<header class="page-header">
<a href="front.html" class="logo-container">
<img src="logo.png" alt="Logo" class="logo" />
</a>
<h1 class="title">To Hide Is To Be Seen</h1>
</header>
<main class="vinyl-container">
<div class="vinyl" id="vinyl">
<img src="C9EED782-8F3C-40E5-87C0-5E2032ADAB72.jpeg" alt="Pochette" />
</div>
<h2 class="title-under">
<span class="song-title">To Hide Is To Be Seen</span><br>
<span class="artist-name">Roman</span>
</h2>
<div class="progress-container">
<input type="range" id="progress" value="0" />
<div class="time-wrapper">
<div id="currentTime" class="time">0:00</div>
<div id="duration" class="time">1:36</div>
</div>
</div>
<div class="buttons-container">
<button id="backward">- 10s</button>
<button id="loop">LOOP</button>
<button id="forward">10s +</button>
</div>
<audio id="audio" src="song to song v4.mp3"></audio>
</main>
<script src="script.js"></script>
</body>
</html>