-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 1.4 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🚀 MEAI Control Station</title>
<link rel="stylesheet" href="assets/css/orb.css" />
</head>
<body class="dark-mode">
<div class="container">
<h1>🧠 MEAI Control Station</h1>
<div class="controls">
<button id="warpBtn">🔮 Aktivovat Warp</button>
<button id="shieldBtn">🛡️ Energie Štít</button>
<button id="nodeBtn">✨ Nový Uzol</button>
<button id="statusBtn">📣 Změnit Status</button>
<button id="themeBtn">🌓 Přepnout Motiv</button>
</div>
<div class="status" id="statusDisplay">Status: 💤 Neaktivní</div>
</div>
<script src="assets/js/control.js"></script>
</body>
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Galaktická Audio Stanice</title>
<link rel="stylesheet" href="orb.css">
</head>
<body>
<h1>🚀 Vítej na orbitální stránce</h1>
<div class="status" id="statusDisplay">
Status: Připraven
</div>
<div class="controls">
<button>Start</button>
<button>Stop</button>
</div>
<div class="audio-player">
<p>🎵 Poslechni si galaxii:</p>
<audio controls>
<source src="assets/audio/skladba.mp3" type="audio/mpeg">
Tvůj prohlížeč nepodporuje přehrávání audia.
</audio>
</div>
</body>
</html>
</html>