-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·140 lines (136 loc) · 4.4 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
<!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" />
<link rel="shortcut icon" href="resources/Music.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<title>Havic- Music Player</title>
</head>
<body>
<nav>
<div class="nav-center">
<div class="nav-header">
<a href="#" class="logo">Havic</a>
<button class="nav-toggle">
<i class="fas fa-bars"></i>
</button>
</div>
<ul class="links">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#Genres">Genres</a>
</li>
<li>
<a href="#new-release">Search</a>
</li>
<li>
<a href="#explore">Explore</a>
</li>
</ul>
</div>
</nav>
<section class="hero">
<img src="resources/left-side-image.png" alt="" id="left-img" />
<img src="resources/logo.png" alt="" id="mid-img"/>
<h1>Havic Music Player</h1>
<h4>One stop solution for searching latest music</h4>
<a href="#explore" id="btn">Explore</a>
<img src="resources/right-side-image.png" alt="" id="right-img" />
</section>
<div id="Genres" class="sec">
<img src="resources/Music-amico.svg" alt="" class="genre-img" />
<h2>Find playlists by Genre:</h2>
<form action="">
<input type="hidden" id='hidden_token'>
<label>Select Genre:</label>
<select name="" id="select-genre">
<option>select..</option>
</select>
<br>
<label>Select Playlist:</label>
<select name="" id="select-playlist">
<option>select..</option>
</select>
<br>
<button type="submit" class="btn" id="genre-submit">Search</button>
</form>
<div id="song-list">
</div>
<div id="song-detail">
</div>
</div>
<div id="new-release" class="sec">
<img src="resources/Listening happy music-pana.png" alt="" class="release-img">
<h2>Search your favourite Track, Album, Artist</h2>
<form name="search" id="search">
<label>Select Type:</label>
<select name="" id="select" >
<option>track</option>
<option>album</option>
<option>artist</option>
</select><br>
<input type="hidden" id='hidden_token'>
<input type="search" id="query">
<i class="fas fa-search"></i><br>
<input type="submit" class="btn" id="query-submit">
</form>
<div id="ssonglist">
</div>
<div id="ssongdetail">
</div>
</div>
<div class="container sec" id="explore">
<div class="card">
<div class="box">
<div class="content">
<h2>01</h2>
<h3>TOP 50-Global</h3>
<p>
Listen to daily updated most played tracks in the world right now.
</p>
<a href="https://open.spotify.com/playlist/37i9dQZEVXbMDoHDwVN2tF">Visit</a>
</div>
</div>
</div>
<div class="card">
<div class="box">
<div class="content">
<h2>02</h2>
<h3>Top tracks and artists</h3>
<p>
Listen to top tracks and artists of 2020 on spotify now.
</p>
<a href="https://open.spotify.com/genre/2020-top-music">Visit</a>
</div>
</div>
</div>
<div class="card">
<div class="box">
<div class="content">
<h2>03</h2>
<h3>Popular new-release</h3>
<p>
Most popular newly release tracks from around the world. Listen Now.
</p>
<a href="https://open.spotify.com/genre/home-popular-new-releases[0]">Visit</a>
</div>
</div>
</div>
</div>
<footer class="section">
<p>
copyright © Aweesome music player web page
2021. all rights reserved
</p>
</footer>
<script
src="https://kit.fontawesome.com/e541b629c5.js"
crossorigin="anonymous"
></script>
<script src="app.js"></script>
</body>
</html>