Music player working

This commit is contained in:
√(noham)²
2024-03-01 17:27:54 +01:00
parent 55253bec44
commit 694a2ebf1d
4 changed files with 94 additions and 17 deletions

View File

@@ -9,6 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Music Player</title>
<script src="player.js"></script>
</head>
<body>
@@ -19,12 +20,15 @@
<div class="info-wrapper">
<img src="https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/94/05/6d/94056dc6-ba11-0c4f-fb1d-ee586224445c/4a754a5f-724e-4400-a78f-06747b604d47.jpg/100x100bb.jpg"
alt="LogoMusicImage">
<a href="" class="song-url"><img src="" alt="LogoMusicImage" class="artwork_url"></a>
<div class="info">
<h1>Tired of a Bewildered Heart</h1>
<p>Elijah Lee & Casiio</p>
<a href="" class="song-url">
<h1 class="title-song"></h1>
</a>
<a href="" class="artist-url">
<p class="name-artist"></p>
</a>
</div>
</div>
@@ -32,12 +36,11 @@
<div class="track-time">
<div class="track"></div>
<div class="time">
<div class="total-time">2:12</div>
<div class="last-time">00:50</div>
<div class="last-time"></div>
<div class="total-time"></div>
</div>
</div>
</div>
</div>
</div>