-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (35 loc) · 864 Bytes
/
index.html
File metadata and controls
46 lines (35 loc) · 864 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles/style.css" />
<title>SoundCloud API Examples - JavaScript SDK</title>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://connect.soundcloud.com/sdk.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<h1>SoundCloud API - Demonstrations</h1>
<h3>Login to your SoundCloud account Now.</h3>
<img src="sc-button.png" id="login" />
</header>
<main>
<div id="ui">
<h2>Welcome <span></span></h2>
<img id="avatar" />
<div id="description"></div>
</div>
<!-- TRACKS -->
<div id="tracklist">
<h3>Your Tracks:</h3>
<ul></ul>
</div>
<!-- PLAYLISTS -->
<div id="playlists">
<h3>Your Playlists:</h3>
<ul></ul>
</div>
<div id="player"></div>
</main>
</body>
</html>