forked from rafaelleru/torrent_player_old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
42 lines (39 loc) · 1.27 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Reproductor de musica</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="palette.css" media="screen" title="no title">
<link rel="stylesheet" href="style.css">
</head>
<body class="dark-primary-color">
<div class="container">
<div class="row">
<div class="col-md-1">
Nº
</div>
<div class="col-md-3">
Song
</div>
<div class="col-md-3">
Artist
</div>
<div class="col-md-3">
Disc
</div>
<div class="col-md-1">
<span class="glyphicon glyphicon-time" aria-hidden="true"></span>
</div>
<hr class="divider-color">
</div>
</div>
<ol id=songs_queue>
</ol>
<footer id="audioTag" class="footer dark-primary-color" >
<div class="barraProgresoAudio"></div>
<audio id="audio" controls="true"></audio>
</footer>
<script src="./src/drag-drop.js"></script>
<script src="./src/songsManager.js"></script>
</body>