burgertunes-client-web/index.html

29 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>burgertunes</title>
<link rel="stylesheet" href="/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="songList" class="songList">
</div>
<div class="shadowTop"></div>
<div class="shadowBottom"></div>
<input class="searchBar" placeholder="Search.." type="search">
<div class="playerDiv">
<img id="coverLabel" class="cover" src="/placeholder.svg">
<p id="titleLabel" class="title">Idling</p>
<p id="artistLabel" class="artist">play a song to get started</p>
<button id="playButton" class="playButton"><img id="playbackIcon" class="icon" src="/playIcon.svg"></button>
<div class="progressBackground">
</div>
<div id="progressActive" class="progressActive">
</div>
</div>
<script src="/lz-string.min.js"></script>
<script src="/main.js"></script>
</body>
</html>