-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (164 loc) · 5.85 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
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
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classic Musiq</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<script defer src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
</head>
<body>
<header>
<h1>CLASSIC MUSIQ</h1>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="genres.html">Genres</a></li>
<li><a href="artists.html">Artists</a></li>
<li><a href="playlists.html">Playlists</a></li>
<li> <a class="loginsize" href="login.html" title="Login to your account">
<i class="fas fa-user-circle"></i>
</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" id="search" placeholder="Search by title, artist, or album..." />
<button onclick="searchSongs()">Search</button>
</div>
</header>
<!-- Banner Section -->
<section class="banner">
<div class="image-container">
<img src="background img/singer circle img.png" alt="Artist Image">
</section>
<div class="statistics-container">
<h2 class="gradient-text">Classic Musiq Podcast</h2>
<div class="stat-item">
<p>10m</p>
<span>Our Subscribers</span>
</div>
<div class="stat-item">
<p>150+</p>
<span>Dialy Visit</span>
</div>
<div class="stat-item">
<p>83K</p>
<span>Our Followers</span>
</div>
<a href="genres.html" class="button">Browse Genres</a>
</div>
<section>
<div class="featured-songs-container">
<!-- Song Card 1 -->
<div class="song-card">
<img src="background img/concert img.jpg" alt="New Generation">
<div class="overlay">
<div class="details">
<p>2024</p>
<h3>Trending Gospel Songs</h3>
</div>
<div class="play-button">▶</div>
</div>
</div>
<!-- Song Card 2 -->
<div class="song-card">
<img src="background img/Singer img.jpg" alt="Recording Studio">
<div class="overlay">
<div class="details">
<p>40 MINS</p>
<h3>Recording Studio</h3>
</div>
<div class="play-button">▶</div>
</div>
</div>
<!-- Song Card 3 -->
<div class="song-card">
<img src="background img/Unknown 2.jpeg" alt="Vocals acapella">
<div class="overlay">
<div class="details">
<p>20 MINS</p>
<h3>Vocals acapella</h3>
</div>
<div class="play-button">▶</div>
</div>
</div>
</div>
</div>
<section>
<section class="concert-section">
<div class="event-header">
<i class="fa fa-calendar-alt"></i> <!-- Calendar Icon -->
<h2>Upcoming Events</h2>
</div>
<p>December is a very important month in Ghana. It marks the last month of the year and to christians,<br>
it is the month which Jesus Christ was born. This makes the month of December packed with so much activities. <br>
Below are some importanat events in ghana in the month of December</p>
<div class="concert-grid">
<!-- Concert Card 1 -->
<div class="concert-card" data-aos="fade-up">
<div class="concert-cover">
<img src="background img/rhythm of africa event.jpg" alt="Concert Cover">
</div>
<div class="concert-info">
<h3>Sonie Badu</h3>
<p class="date">Dec 9, 2024</p>
<p class="location">Grand Arena, Accra Ghana</p>
<a href="https://www.instagram.com/sonniebaduuk?utm_source=ig_web_button_share_sheet&igsh=ZDNlZDc0MzIxNw==" class="button">Free Ticket</a>
</div>
</div>
<!-- Concert Card 2 -->
<div class="concert-card" data-aos="fade-right">
<div class="concert-cover">
<img src="background img/made in taadi event 2.jpg" alt="Concert Cover">
</div>
<div class="concert-info">
<h3>Kofi Kinaata</h3>
<p class="date">Dec 24, 2024</p>
<p class="location">Takoradi Technical University Park</p>
<a href="https://www.instagram.com/kinaatagh/?utm_source=ig_web_button_share_sheet" class="button">Free Tickets</a>
</div>
</div>
</section>
<!-- Main Content -->
<main>
<!-- Placeholder for Homepage Sections -->
<section class="featured">
<button class="featuredT" id="toggle-songs-btn" onclick="toggleSongs()">Show Songs</button> <!-- Added inline cursor style -->
<div id="featured-songs">
</section>
<div class="pagination-controls">
<button id="prev-page" onclick="prevPage()">Previous Page</button>
<button id="next-page" onclick="nextPage()">Next Page</button>
</div>
<!-- Media Player -->
<div class="media-player-container">
<div id="player-controls">
<audio id="audio-player" controls></audio>
<div class="media-buttons">
<button id="prev-btn">⏮</button>
<button id="play-pause-btn">▶</button>
<button id="next-btn">⏭</button>
</div>
</div>
<div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="social-links">
<!-- Add Social Media Icons Here -->
<a href="https://www.facebook.com"><img src="icons/facebook.svg" alt=""></a>
<a href="https://www.twitter.com"><img src="icons/twitter-x.svg" alt=""></a>
<a href="https://wa.me/1234567890"><img src="icons/whatsapp.svg" alt=""></a>
<a href="https://www.instagram.com"><img src="icons/instagram.svg" alt=""></a>
<a href="https://www.tiktok.com/@yourusername"><img src="icons/tiktok.svg" alt="TikTok"></a>
</div>
<div class="footer-content">
<p>© 2024 Classic Musiq | All Rights Reserved</p>
<a href="developer.html" class="about-developer-link">About Developer</a>
</div>
</footer>
</body>
</html>