45 lines
682 B
HTML
Executable file
45 lines
682 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="default.css">
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#frameset {
|
|
display:flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#frame-radio {
|
|
flex: 0 0 200px;
|
|
}
|
|
|
|
#frame-chat {
|
|
|
|
}
|
|
|
|
iframe {
|
|
border-style: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id='frameset'>
|
|
|
|
<iframe id='frame-radio' src="https://radio.dianaband.in:8000/stream" title="radio">
|
|
</iframe>
|
|
|
|
<iframe id='frame-chat' src="chat.html" title="radio">
|
|
</iframe>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|