-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (103 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Spotify </title>
<link rel="shortcut icon" href="Icons/favicon1.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li class="brand-logo">
<img src="GIFs/spotify.gif" alt="logo">
Spotify
</li>
<li> <a href="index.html"> HOME </a> </li>
<li> <a href="playlist.html"> MY CORNER </a> </li>
</ul>
</nav>
</header>
<main>
<div class="outer-container">
<section class="songListDisplaySection">
<div class="inner-container">
<!-- <div class="topRow">
<div class="allSongs" id="allSongs"> All Songs </div>
<div class="mySongs" id="mySongs"> My Songs </div>
</div> -->
<div class="songsDisplayArea">
<div class="songTileContainer all-songs-container">
<!-- <div class="songTiles">
<span class="songId"> 1 </span>
<img src="Songcover/Beautiful people.jpg" alt="">
<span class="songName"> Beautiful People 1</span>
<span class="songLength">05:34</span>
<div>
<i class="material-icons song-play-buttons"> play_circle_outline </i>
<i class="material-icons mark-fvr8-buttons"> favorite_border </i>
</div>
</div> -->
</div>
<div class="songCoverContainer">
<div class="cover-gifs top-covergif">
<img src="GIFs/nowplaying1.gif" id="topGif" alt="">
</div>
<div class="coverImage">
<img id="playingSongCover" src="" alt="">
<div class="image-overlay">
<i class="material-icons" id="download-icon"> <a href="Songs/Agar Tum Saath Ho.mp3" download id="download-link"> file_download </a> </i>
</div>
</div>
<div class="cover-gifs bottom-covergif">
<img src="GIFs/playingbars.gif" id="bottomGif" alt="">
</div>
</div>
</div>
</div>
</section>
<section class="bottom-tray-container">
<div class="currSongDetails">
<div>
<div id="currSongName">
</div>
<div id="currSongArtist">
</div>
</div>
</div>
<div class="progressBar-and-Icons">
<div class="progressBarRow">
<span id="currSongTime"> </span>
<input type="range" name="progressBar" id="songProgressBar" value="0" class="slider" min="0" max="100">
<span id="currSongDuration"> </span>
</div>
<div class="icon-class">
<i class="material-icons" id="loop"> repeat </i>
<i class="material-icons" id="back10secs"> replay_10 </i>
<i class="material-icons" id="prevs"> skip_previous </i>
<i class="material-icons" id="pause-play-btn"> play_circle_filled </i>
<i class="material-icons" id="next"> skip_next </i>
<i class="material-icons" id="forward10secs"> forward_10 </i>
<i class="material-icons" id="shuffle"> shuffle </i>
</div>
</div>
<div class="volume-and-otherTools">
<div>
<i class="material-icons" id="volume-icon"> volume_up </i>
<input type="range" name="volumeBar" id="volumeBar" class="slider" value="100" min="0" max="100">
<span id="volume-num">
100
</span>
</div>
</div>
</section>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>