-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.93 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Page</title>
<link rel="stylesheet" href="CSS\style.css">
</head>
<body>
<div class="container">
<div class="container-btn">
<input type="file" id="fileUpload" accept=".txt,.csv" style="display: none;">
<button id="uploadButton" class="file-btn">Upload File</button>
<button id="logButton" class="log-btn">Log In</button>
<button id="cameraButton" class="cam-btn">Open Camera</button>
<button id="closeButton" class="cam-btn">Close Camera</button>
<button id="voiceButton" class="voice-btn">Start Voice Recognition</button>
</div>
<div class="tb1 tv_onroom">
<h1 id="mainText">Máy Lạnh</h1>
<div class="upload-section">
<img src="IMG\maylanh_dn.jpg" alt="Disconnected" class="tv-image disconnected">
<img src="IMG\maylanh_cn.jpg" alt="Connected" class="tv-image connected" style="display: none;">
</div>
</div>
<div class="tb2 tv_onroom">
<h1 id="mainText2">Lò Sưởi</h1>
<div class="upload-section">
<div class="image-container">
<img src="IMG\losuoi_dn.jpg" alt="Disconnected" class="tv-image tv-image1 disconnected">
<img src="IMG\losuoi_cn.jpg" alt="Connected" class="tv-image tv-image1 connected" style="display: none;">
</div>
</div>
</div>
<div class="tb3 tv_onroom">
<h1 id="mainText2">Bóng Đèn</h1>
<div class="upload-section">
<div class="image-container">
<img src="IMG\bongden_dn.jpg" alt="Disconnected" class="tv-image tv-image2 disconnected">
<img src="IMG\bongden_cn.jpg" alt="Connected" class="tv-image tv-image2 connected" style="display: none;">
</div>
</div>
</div>
</div>
<script type="module" src="JS/script.js"></script>
</body>
</html>