-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (48 loc) · 1.66 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jukebox</title>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<script src="/home/angel/Downloads/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img src="" class="bg bg0">
<img src="" class="bg bg1 transparent">
<!--
<audio controls="controls" id ="sputnik"> <source src="music/578626main_sputnik-beep.mp3"/></audio> -->
<header>
<form action="">
<input class="search-spotify" type="text" placeholder="Search Spotify">
<input class="submit-button" type="submit" value="Search" visibility="hidden">
</form>
<!-- <div class="post" id="now-playing">
<div class="pic"></div>
<div class="text">
<h5>NASA</h5>
<h6>Sounds from space</h6>
</div>
<i class="post-btn post-play"></i>
<i class="post-btn post-add"></i>
</div> -->
</header>
<audio id="sputnik" src="music/sputnik.mp3"></audio>
<!-- <div class="playlist-container"></div> -->
<div class="extra-space"></div>
<div class="library-container">
<h2 id='txt-library'>My library</h2>
</div>
<div class="extra-space"></div>
<footer>
<div class="controls">
<i class="control playlist-prev"></i>
<i class="control playlist-play"></i>
<i class="control playlist-next"></i>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>