<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Crikey! Listen to The Flamethrower</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: black; /* Changed background to black */
color: yellow; /* Changed text color to yellow */
}
h1 {
color: yellow; /* Changed title color to yellow */
}
#player {
margin: 20px 0;
}
a {
color: yellow; /* Changed link color to yellow */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>The Flamethrower</h1>
<audio id="player" controls>
<source src="http://flat1.net:8000/flame" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<a href="https://www.mixcloud.com/live/theflamethrower/" target="_blank"
>Listen on Mixcloud</a
>
</body>
</html>