-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·34 lines (34 loc) · 1.52 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<head>
<!-- Spotify CSS files -->
<link rel="stylesheet" type="text/css" href="sp://resources/css/eve.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/api.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/player.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/list.css">
<!-- Member Music CSS files -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<div id="wrapper">
<div id="index" class="section">
<h1>Range of Music</h1>
<a href="#" class="button-start">Start</a>
<h2>Playing songs from these users:</h2>
<div id="users_playing"></div>
<h2>Current Track:</h2>
<div id="single-track-player"></div>
<div id="current-track-name"></div>
<div id="current_track_player"></div>
<input type="button" id="previous" value="« Previous">
<input type="button" id="next" value="Next »">
<h2>Previous Track:</h2>
<div id="previous_track_name"></div>
<div id="previous_track_player"></div>
<h2>Playlist:</h2>
<div id="playlist"></div>
</div>
</div>
<script src="/js/jquery.min.js"></script>
<script type="text/javascript" src="/js/main.js" data-container="js"></script>
</body>
</html>