-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (104 loc) · 4.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Clone</title>
<link rel="stylesheet" href="./css/reponsive.css">
<link rel="stylesheet" href="./css//utility.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="main">
<!-- ________________________________________________________________________________________ -->
<div class="left">
<!-- ..................................................................................... -->
<div class="HomeBar">
<div class="logo-close">
<div class="logo">
<img class="filter" src="UtilitySvg/logo.svg" alt="logo">
</div>
<div>
<img src="UtilitySvg/cross.svg" class="close filter" alt="">
</div>
</div>
<div class="homesearch">
<div><img class="filter" src="UtilitySvg/home.svg" alt="">
<p>Home</p>
</div>
<div> <img class="filter" src="UtilitySvg/search.svg" alt="">
<p>Search</p>
</div>
</div>
</div>
<!-- ..................................................................................... -->
<div class="Your-Library">
<div class="nav">
<img class="filter" src="UtilitySvg/library.svg" alt="Icon">
<p> Your Library</p>
</div>
<div class="songslists">
<ul> </ul>
</div>
<div class="footer">
<a href="https://www.spotify.com/in-en/legal/">Legal</a>
<a href="https://www.spotify.com/in-en/safetyandprivacy/">Safety & Privacy Center</a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/">Privacy Policy</a>
<a href="https://www.spotify.com/in-en/legal/cookies-policy/">Cookies</a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3">About Ads</a>
<a href="https://www.spotify.com/in-en/accessibility/">Accessibility</a>
</div>
</div>
</div>
<!-- ..................................................................................... -->
<!-- ________________________________________________________________________________________ -->
<div class="right">
<div class="navbar">
<div class="ham-arrow">
<img src="UtilitySvg/hamburger.svg" class="hamburger filter" alt="22">
<div class="arrow">
<img src="UtilitySvg/leftarrow.svg" alt="">
<img src="UtilitySvg/rightarrow.svg" alt="">
</div>
</div>
<div class="buttons">
<button class="signup">Sign up</button>
<button class="login">Log in</button>
</div>
</div>
<div class="heading">
<h1>Your Playlists</h1>
</div>
<div class="albumcontainer"></div>
<div class="PlaybarContainer">
<div class="songdetail">
<div class="songinfo"></div>
<div class="timevol">
<div class="songduration"></div>
<div class="volume">
<div class="volumeimg">
<img src="UtilitySvg/volume.svg" alt="">
</div>
<div>
<input style="cursor: pointer;" type="range" name="volume" id="volume-range">
</div>
</div>
</div>
</div>
<div class="control">
<img id="previous" src="UtilitySvg/prvsong.svg" alt="">
<img id="play" src="UtilitySvg/play.svg" alt="">
<img id="next" src="UtilitySvg/nextsong.svg" alt="">
</div>
<div class="durationcontrol">
<div class="seekbar">
<div class="circle"></div>
</div>
</div>
</div>
</div>
</div>
<!-- ________________________________________________________________________________________ -->
<script src="js/index.js"></script>
</body>
</html>