-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusicH.php
More file actions
190 lines (169 loc) · 4.89 KB
/
musicH.php
File metadata and controls
190 lines (169 loc) · 4.89 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>Music Player</title>
<!--Linking the CSS stylesheet using extrenal CSS-->
<link rel="stylesheet" type="text/css" href="MusicPlayerStyle.css">
<!--Font Awesome script for using icons from font awesome-->
<script src="https://kit.fontawesome.com/6f0f83005a.js" crossorigin="anonymous"></script>
<!--Adds responsiveness to the website-->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
</head>
<!--End of head section-->
<!--Begining of the body section-->
<body>
<!--Begining of navigation bar section-->
<nav>
<!--Music Player Logo div-->
<div id="music-player-tag">
<div id="music-player-logo">
<img src="Images/music-player-logo.png">
</div>
<!--Music Player Logo div end-->
<!--Music Player Title-->
<div id="music-player-name">
Music<br/><b>Player</b>
</div>
</div>
<!--Music Player Title div end-->
<div>
<div>
<a href="mainbot.php" style="color:white;">C H A T B O T</a>
</div>
</div>
<!--Search Bar div-->
<div id="search-bar-utility">
<div id="search-bar">
<form>
<!--Search Icon-->
</form>
</div>
</nav>
<main>
<!--Begining of playlist section-->
<br>
<div id="playlistH">
<h1>Playlists</h1>
<div id="playlist">
<!--Playlist item 2-->
<div id="playlist-item-2">
<div id="popular-artists-text">
<a href="retro.php">Retro</a>
</div>
</div>
<!--End of playlist item 2-->
<!--Playlist item 3-->
<div id="playlist-item-3">
<div id="popular-artists-text">
<a href="chill.php">Chill</a>
</div>
</div>
<!--End of playlist item 3-->
<!--Playlist item 4-->
<div id="playlist-item-4">
<div id="popular-artists-text">
<a href="rock.php">Rock</a>
</div>
</div>
<!--End of playlist item 4-->
<!--Playlist item 5-->
<div id="playlist-item-5">
<div id="popular-artists-text">
<a href="workout.php">Workout</a>
</div>
</div>
<!--End of playlist item 5-->
</div>
</div>
<!--End of playlist section-->
<!--Begining of genre section-->
<div id="genreH">
<div id="genre">
<!--Genre Item 1-->
<div id="genre-item">
<div id="genre-item-background-1"><a style="color:white;" href="party.php">Party</a></div>
</div>
<!--End of genre item 1-->
<!--genre item 2-->
<div id="genre-item">
<div id="genre-item-background-2"><a style="color:white;" href="electronics.php">Electronics</a></div>
</div>
<!--End of genre item 2-->
<!--Genre Item 3-->
<div id="genre-item">
<div id="genre-item-background-3"><a style="color:white;" href="roadtrip.php">Road Trip</a></div>
</div>
<!--End of genre item 3-->
</div>
</div>
<!--End of genre section-->
<footer>
<!--The bottom music bar which pops up when we play a music-->
<div id="music-bar" class="hide">
<!--Music Icon-->
<div id="music-icon">
<img src="Images/latest-release-2.png" alt="music-icon">
</div>
<!--End of music icon-->
<!--Music title-->
<div id="music-title">
<b>evermore (feat. Bon Iver)</b>
<div id="favourite">
<i class="far fa-heart"></i>
</div>
<div id="remove">
<i class="fas fa-ban"></i>
</div>
<br/>
<artist id="music-player-title-artist">Taylor Swift</artist>
</div>
<!--End of music title-->
<!--Play buttons-->
<div id="play-buttons">
<i class="fas fa-random"></i>
<i class="fas fa-backward"></i>
<i class="fas fa-pause-circle"></i>
<i class="fas fa-forward"></i>
<i class="fas fa-undo-alt"></i>
</div>
<!--End of play buttons-->
<!--Music start time-->
<div id="start-time">
0:00
</div>
<!--End of music start time-->
<!--Music end time-->
<div id="end-time">
5:04
</div>
<!--End of music end time-->
<!--Begining of the progress bar-->
<div id="progress-bar">
<div id="circle">
<i class="fas fa-circle"></i>
</div>
</div>
<!--End of progress bar-->
<!--Miscellaneous icons-->
<div id="queue">
<i class="fas fa-bars"></i>
</div>
<div id="volume">
<i class="fas fa-volume-up"></i>
</div>
<div id="progress-bar-volume">
<div id="circle-volume">
<i class="fas fa-circle"></i>
</div>
</div>
<!--End of miscellaneous icons-->
</div>
<!--End of music bar-->
</footer>
<!--End of footer section-->
</body>
<!--End of body section-->
</html>
<!--End of html code-->