html5-css3-audio-player-wit.../index.html
2024-08-13 14:22:37 +02:00

24 lines
955 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pure HTML5/CSS3 Audio Player with Playlist</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="apwple-audio-player" id="apwp" data-config='{"shide_top":false,"shide_btm":false,"auto_load":false}'>
<div class="apwp-playlist">
<ul>
<li><span class="apwp-source" data-src="http://www.archive.org/download/CanonInD_261/CanoninD.mp3">Canon in D</span><span class="apwp-desc">Johann Pachelbel</span></li>
<li><span class="apwp-source" data-src="https://www.script-tutorials.com/demos/363/data/05.mp3">Piste 1</span><span class="apwp-desc">par Petit Biscuit</span></li>
</ul>
</div>
<div class="apwp-footer">🖊️ by <a href="https://oversu.fr" target="_blank" title="OverSu">OverSu</a> &amp; <a href="https://bit.ly/sekedus" target="_blank" title="Sekedus">Sekedus</a></div>
</div>
<script src="script.js"></script>
</body>
</html>