-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bismark Agyapong Podcast</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body class="light-mode">
<header>
<div class="container">
<h1>Bismark Agyapong Podcast</h1>
<p id="podcast-description"></p>
</div>
<button id="theme-toggle" class="toggle-button">
<span class="circle"></span>
</button>
</header>
<main>
<section id="episodes">
<h2>Latest Episodes</h2>
<div id="episode-list" class="episode-list">
<!-- Episodes will load dynamically here -->
</div>
</section>
</main>
<footer>
<p>© 2024 <b>Markmix Studios Limited</b>. All rights reserved.</p>
</footer>
<div id="audio-player" class="sticky-player">
<div id="player-info">
<h3 id="player-title">Select an episode to play</h3>
</div>
<audio id="player-audio" controls>
<source src="" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>