2023-02-11 17:59:15 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Music Player</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-03-04 22:06:11 +00:00
|
|
|
<div id="now-playing">
|
|
|
|
</div>
|
|
|
|
|
2023-02-11 17:59:15 +00:00
|
|
|
<div class="controls"><button class="play-pause">Pause</button></div>
|
|
|
|
|
|
|
|
<div class="track-list">
|
2023-03-01 14:20:58 +00:00
|
|
|
<div>
|
|
|
|
<ul class="track-list__tracks bulletless-list">
|
|
|
|
</ul>
|
2023-02-11 17:59:15 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-02-26 03:17:00 +00:00
|
|
|
<script src="./bundle.js" type="module"></script>
|
2023-02-11 17:59:15 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|