-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·38 lines (31 loc) · 1.11 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
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0;'>
<title>SoundCloud Player</title>
<link rel='stylesheet' href='styles/semantic.min.css'>
<link rel='stylesheet' href='styles/main.css'>
</head>
<body id="soundcloud-player">
<div class="ui container col">
<div class="col-left js-playlist">
<div class="inner"></div>
</div>
<div class="col-right">
<div class="main">
<div class="ui massive icon input">
<input type="text" placeholder="Search for a song or artist..." class="js-search input-search">
<i class="search icon js-submit"></i>
</div>
<button class="negative ui button right floated ">Clear Playlist</button>
<div class="search-results js-search-results ui cards">
</div>
</div>
</div>
</div>
<script src="https://connect.soundcloud.com/sdk/sdk-3.3.2.js"></script>
<script src="javascript/semantic.min.js"></script>
<script src="javascript/main.js"></script>
</body>
</html>