-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepisode.html
More file actions
69 lines (68 loc) · 1.49 KB
/
Copy pathepisode.html
File metadata and controls
69 lines (68 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Episode 001 — Origin Story</title>
<style>
body {
font-family: Georgia, serif;
background-color: #fff;
color: #222;
margin: 0;
padding: 2rem;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
text-align: center;
margin-bottom: 2rem;
}
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
img {
max-width: 100%;
height: auto;
border: 1px solid #ccc;
margin-bottom: 1rem;
}
.fallback {
color: red;
font-style: italic;
margin-top: 0.5rem;
}
a {
display: block;
margin-top: 2rem;
text-align: center;
color: #0077cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: auto;
text-align: center;
font-size: 0.9rem;
color: #666;
padding-top: 2rem;
border-top: 1px solid #ddd;
}
</style>
</head>
<body>
<header>
<h1>Episode 001 — Origin Story</h1>
<img src="media/artwork/episode-001.jpeg" alt="Episode artwork" />
<p class="fallback">🎙️ Audio will be added soon. Stay tuned.</p>
<a href="index.html">← Back to homepage</a>
</header>
<footer>
© 2025 BootBoard Echo. All rights reserved. Crafted by Sancifex.
</footer>
</body>
</html>