Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Wishing Game Audiobook</title>
<style>
body {
background-color: #f3f4f6;
font-family: 'Arial', sans-serif;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
h1 {
font-size: 2.5rem;
color: #2c3e50;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.5rem;
color: #2980b9;
margin-top: 1rem;
margin-bottom: 0.5rem;
}
.chapter {
margin-bottom: 2rem;
text-align: center;
}
audio {
width: 100%;
max-width: 600px;
margin-top: 1rem;
}
.container {
max-width: 800px;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>The Wishing Game</h1>
<h2>by Meg Shaffer</h2>
<div class="chapter">
<h2>Chapter 1: The Beginning of the Journey</h2>
<audio controls>
<source src="chapter1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div class="chapter">
<h2>Chapter 2: A Whimsical Encounter</h2>
<audio controls>
<source src="chapter2.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<!-- Add more chapters as needed -->
<footer>
<p>© 2024 The Wishing Game Audiobook Experience</p>
</footer>
</div>
</body>
</html>