-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (140 loc) · 5.54 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Prime Music</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css'>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="https://streamprime.netlify.app/netflix-images/icon2.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
</head>
<body>
<!-- partial:index.partial.html -->
<div class="device">
<!-- SIDE BAR -->
<aside>
<div class="logo">
<img src="https://storage.googleapis.com/pr-newsroom-wp/1/2018/11/Spotify_Logo_CMYK_White.png" alt="Logo" />
</div>
<div class="general-options">
<a id="Home" class="option active">
<i class="fas fa-home"></i>
Home
</a>
<div class="search-bar hidden" id="searchBar">
<input type="text" id="searchInput" placeholder="Search...">
</div>
<a id="Library" class="option">
<i class="fas fa-book-open"></i>
Your Library
</a>
</div>
<div class="playlist-options">
<span>Playlists</span>
<a class="option">
<i class="fas fa-plus"></i>
Create Playlist
</a>
<a class="option">
<i class="fas fa-heart"></i>
Liked Songs
</a>
</div>
<div class="playlists">
<a id="Leo" class="option">
Leo
</a>
<a id="Jailer" class="option">
Jailer
</a>
<a id="Vikram" class="option">
Vikram
</a>
<a id="Jawan" class="option">
Jawan
</a>
<a id="Sethupathi" class="option">
KRK
</a>
<a id="LoveToday" class="option">
Love Today
</a>
<a id="VelaiIllaPadathari" class="option">
Vip
</a>
</div>
</aside>
<div class="container">
<div style="height: 20px;"></div>
<!-- HEADER -->
<header class="fixed-header">
<div class="head-btns" id="headBtns">
<img src="https://storage.googleapis.com/pr-newsroom-wp/1/2018/11/Spotify_Logo_CMYK_White.png" alt="Logo" class="mobile-logo" id="mobileLogo">
<i class="fas fa-bars desktop-bars" id="desktopBars"></i>
</div>
<div class="profile">
<a href="https://instagram.com/being_exception" class="href">
<img src="https://i.ibb.co/YQkVXZJ/img.jpg" alt="Profile" /></a>
<span>Oreo Cat</span>
</div>
</header>
<!-- MAIN AREA -->
<div class="collection-strip">
<div style="height: 40px;"></div>
<div class="title-strip">
<h3>Popular playlists</h3>
<div id="home-search" class="search-bar-home">
<input type="text" class="contents" id="searchome" placeholder="Search songs, artist, movies, ...">
</div>
</div>
<div class="inner-strip">
<!-- box-items from request -->
</div>
<div style="height: 80px;"></div>
</div>
</div>
<!-- SONG CONTROL STRIP -->
</div>
<!-- mobileplayer -->
<div class="play">
<div class="div">
<img id="mobcurrentSongImg" class="song-img" src="https://c.saavncdn.com/005/I-m-Scared-From-Leo-Tamil-2023-20231027154923-500x500.jpg" alt="Current Song">
<div class="group">
<div id="mobcurrentSongName" class="currentSongName" style="color: white;">Now Playing ...</div>
</div>
<div class="play-button-circled"></div>
<div class="mobtimeline-fill"></div>
<div class="pause-circled"></div>
<div class="shuffle"></div>
</div>
</div>
</div>
<!-- pcplayer -->
<audio id="audioPlayer" src="https://aac.saavncdn.com/005/38fc89ed330a107bbfd85aec57a44135_320.mp4"></audio>
<div class="song-control">
<div class="song-control__details">
<img id="currentSongImg" src="https://c.saavncdn.com/005/I-m-Scared-From-Leo-Tamil-2023-20231027154923-500x500.jpg" alt="Current Song" width="50" height="50">
<h4 id="currentSongName"></h4>
</div>
<div class="song-control__inner">
<div class="song-control__buttons">
<i class="fas fa-random"></i>
<i class="fas fa-step-backward"></i>
<i class="fas fa-pause"></i>
<i class="fas fa-play"></i>
<i class="fas fa-forward"></i>
<i class="fas fa-redo-alt"></i>
</div>
<div class="song-control__timeline">
<span>0:00</span>
<div class="timeline">
<div class="timeline-fill"></div>
</div>
<span>2:00</span>
</div>
</div>
</div>
<!-- partial -->
</body>
</html>