<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Free Web Radio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.radio-player {
background-color: #333;
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
max-width: 400px;
width: 90%;
}
h1 { margin-top: 0; color: #4CAF50; }
p { color: #aaa; margin-bottom: 25px; }
audio { width: 100%; outline: none; }
</style>
</head>
<body>
<div class="radio-player">
<h1>đź“» My Live Radio</h1>
<p>Broadcasting live 24/7. Click play to tune in!</p>
<!-- The Radio Player -->
<audio controls preload="none">
<!-- PASTE YOUR STREAM URL FROM ZENO.FM OR CASTER.FM BELOW -->
<source src="http://YOUR_STREAM_URL_HERE/stream" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>