-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (62 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HaHa Medicine - Podcast</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>HaHa Medicine</h1>
<p>A Podcast Blending Humor and Healthcare</p>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#episodes">Episodes</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="home">
<h2>Welcome to HaHa Medicine</h2>
<p>Join us as we explore the funny side of healthcare with stories, humor, and medical insights!</p>
<img src="HaHa Medicine-logos.jpeg" alt="HaHa Medicine Podcast Banner" class="banner-image">
</section>
<section id="about">
<h2>About the Podcast</h2>
<p>HaHa Medicine brings you laughter and learning through personal stories and expert interviews.</p>
<p>Hosted by: [Your Name]</p>
</section>
<section id="episodes">
<h2>Latest Episodes</h2>
<article class="episode">
<h3>Episode 1: Laughing through Medical School</h3>
<p>Released on: October 16, 2024</p>
<audio controls>
<source src="HaHa Ep 6 Edited.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</article>
<article class="episode">
<h3>Episode 2: Doctor Jokes and How They Land</h3>
<p>Released on: October 10, 2024</p>
<audio controls>
<source src="episode2.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</article>
</section>
<section id="contact">
<h2>Get in Touch</h2>
<p>Have questions or stories to share? Reach out!</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Follow us on:
<a href="https://twitter.com/haha_medicine" target="_blank">Twitter</a> |
<a href="https://instagram.com/haha_medicine" target="_blank">Instagram</a>
</p>
</section>
<footer>
<p>© 2024 HaHa Medicine. All rights reserved.</p>
</footer>
</body>
</html>