-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.44 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.44 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Between Threads - Live Cam</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="main-container">
<h1>Between Threads</h1>
<div class="video-wrapper">
<div class="offline-screen" id="offlineScreen">
<span class="offline-icon">⬛</span>
<span>FEED INACTIF</span>
</div>
<img id="streamImg" src="" alt="Live Stream">
</div>
<div style="display: flex; justify-content: space-between; align-items: flex-end;">
<button class="cam-toggle-btn" id="camBtn" onclick="toggleCam()">
<span class="btn-dot"></span>
<span id="camBtnLabel">ACTIVATE CAMERA</span>
</button>
<div class="footer">
<div class="status-group">
<span class="status-dot" id="statusDot"></span>
<span class="status-label" id="statusLabel">OFFLINE</span>
</div>
</div>
</div>
<div class="footer" style="margin-top: 8px;">
<div></div>
<div class="names">
JULIEN FERNANDES<br>
JOLANN NARCISSE
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>