57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 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>Muddy Files</title>
 | |
|   <link rel="stylesheet" href="stylesmf.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">Muddy Files</h1>
 | |
| </header>
 | |
| 
 | |
| 
 | |
| <main class="vinyl-container">
 | |
|     
 | |
|     <div class="vinyl" id="vinyl">
 | |
|       <img src="Cover.png" alt="Pochette" />
 | |
|     </div>
 | |
| 
 | |
|     <h2 class="title-under">
 | |
|         <span class="song-title">Muddy Files</span><br>
 | |
|         <span class="artist-name">Ely</span>
 | |
|       </h2>
 | |
| 
 | |
|       <div class="progress-container">
 | |
|         <input type="range" id="progress" value="0" max="100" />
 | |
| 
 | |
|         <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="muddy_files.mp3" 
 | |
|        data-reverse-src="muddy_files_reverse.mp3"></audio>
 | |
| 
 | |
|   </main>
 | |
| 
 | |
|       
 | |
|   <script src="socket.io.min.js"></script>
 | |
|   <script src="script.js"></script>
 | |
| </body>
 | |
| </html>
 |