-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotifylist.html
55 lines (43 loc) · 1.55 KB
/
spotifylist.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Spotify</title>
<link rel="stylesheet" type="text/css" href="css/style2.css">
<link rel="stylesheet" type="text/css" href="css/materialize.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script src="js/jquery-2.1.4.js" type="text/javascript"></script>
<script src= "js/materialize.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col s4">
<ul class="side-nav fixed">
<img src="img/Spotify_logo.jpg" width="100">
<li id="listsongs">LISTA DE CANCIONES</li>
<ul class="collection" id="listSpotify" >
</ul>
</ul>
</div>
<div class="col s8">
<div class="input-field">
<input id="search" type="search" placeholder="Search artist" />
<label for="search" id="search-icon"><i class="material-icons">search</i></label>
</div>
<div id="albumsSearch" class="collection"></div>
<div id="modal1" class="modal">
<div id="modalArtist" class="modal-content"></div>
<div class="modal-footer">
<a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat">Agree</a>
</div>
</div>
</div>
</div>
</div>
<script src="js/users.js" type="text/javascript"></script>
<script src="js/spotify.js" type="text/javascript"></script>
</body>
</html>