28 lines
648 B
HTML
28 lines
648 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||
<title>Radio Player</title>
|
||
|
||
<!-- Google Cast Receiver SDK -->
|
||
<script src="https://www.gstatic.com/cast/sdk/libs/caf_receiver/v3/cast_receiver_framework.js"></script>
|
||
|
||
<link rel="stylesheet" href="styles.css" />
|
||
</head>
|
||
<body>
|
||
<div id="app">
|
||
<h1>Radio Player</h1>
|
||
<p id="status">Ready</p>
|
||
|
||
<div id="artwork">
|
||
<img src="assets/logo.svg" alt="Radio Player" />
|
||
</div>
|
||
|
||
<p id="station">Radio – Live Stream</p>
|
||
</div>
|
||
|
||
<script src="receiver.js"></script>
|
||
</body>
|
||
</html>
|