-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.47 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link id="favicon" rel="icon" type="image/x-icon" href="/facebook.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Facebook</title>
</head>
<body>
<div id="ui" class="overlay">
<div class="glass-panel">
<div class="boot-tag">FREESIDE ORBITAL TELEMETRY</div>
<h1>
DUB
<span class="headline-accent">SATELLITE</span>
</h1>
<p id="source-subhead" class="subhead">Awaiting uplink probe</p>
<p id="source-body" class="body-copy">Polling relay status and preparing a local fallback.</p>
<div id="source-metadata" class="metadata-grid"></div>
<div class="status-row">
<span id="mode-label"><strong>Mode</strong> Deep space telemetry</span>
<span id="status-label"><strong>Status</strong> Buffering audio uplink</span>
</div>
<button id="start-btn">CALIBRATING...</button>
<div id="source-hint" class="hint">Audio is click-gated. Thank your browser vendor.</div>
</div>
</div>
<div id="canvas-container"></div>
<div id="volume-control" class="volume-control hidden" aria-hidden="true">
<span class="volume-control__label">GAIN</span>
<input id="volume-slider" type="range" min="0" max="100" step="1" value="80" aria-label="Output volume" />
<span id="volume-value" class="volume-control__value">80</span>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>