FediMusicPlayer/index.html

55 lines
1.6 KiB
HTML
Raw Normal View History

2023-04-23 00:17:41 -07:00
<!-- FediMusicPlayer - An HTML5 + Javascript Music Player -->
2023-04-24 19:58:30 -07:00
<!-- Copyright (C) 2023 <@Anon@yandere.cc> -->
2023-04-23 00:29:17 -07:00
<!-- -->
2023-04-23 00:17:41 -07:00
<!-- This program is free software: you can redistribute it and/or modify -->
2023-04-23 00:29:17 -07:00
<!-- it under the terms of the GNU Affero General Public License as published by -->
2023-04-23 00:17:41 -07:00
<!-- the Free Software Foundation, either version 3 of the License, or -->
<!-- (at your option) any later version. -->
2023-04-23 00:29:17 -07:00
<!-- -->
2023-04-23 00:17:41 -07:00
<!-- This program is distributed in the hope that it will be useful, -->
<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
2023-04-23 00:29:17 -07:00
<!-- GNU Affero General Public License for more details. -->
<!-- -->
<!-- You should have received a copy of the GNU Affero General Public License -->
2023-04-23 00:17:41 -07:00
<!-- along with this program. If not, see <https://www.gnu.org/licenses/>. -->
2023-04-17 20:54:28 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Music Player</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<article>
<aside>
<img id="audioCoverArt" class="audioCoverArt" src="" alt="Cover"></img>
</aside>
<div class="content">
<header>
<h3>
<a id="audioTrack">Track</a>
</h3>
By
<a id="audioArtist">Artist</a>
</header>
</div>
</article>
<audio controls id="audioPlayer">
Sorry, your browser doesn't support HTML5!
</audio>
<div class="queue-wrapper">
<table class="playlist">
<tbody id="audioPlaylist">
</tbody>
</table>
</div>
<script src="audioPlayerPlaylist.js"></script>
2023-04-17 20:54:28 -07:00
<script src="audioPlayer.js"></script>
<script>audioPlayer();</script>
</main>
</body>
</html>