-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsensorsdata.html
More file actions
44 lines (44 loc) · 1.53 KB
/
Copy pathsensorsdata.html
File metadata and controls
44 lines (44 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AVANI - Sensors Data</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="sensorsdata.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<img src="logo.png" alt="AVANI Logo" class="logo">
<a href="overview.html" class="menu-item"><span class="icon">📄</span>Overview</a>
<a href="sensorsdata.html" class="menu-item active"><span class="icon">📡</span>Sensors Data</a>
<a href="reports.html" class="menu-item"><span class="icon">📑</span>Report</a>
<a href="architechture.html" class="menu-item"><span class="icon">📑</span>Architechture</a>
<a href="contact.html" class="menu-item"><span class="icon">💬</span>Contact Us</a>
</div>
<div class="content">
<h1>Sensors Data</h1>
<div class="sensors">
<div class="sensor">
<h2>Air Quality Sensor</h2>
<p id="airQuality">Loading...</p>
</div>
<div class="sensor">
<h2>Soil Moisture Sensor</h2>
<p id="soilMoisture">Loading...</p>
</div>
<div class="sensor">
<h2>Temperature Sensor</h2>
<p id="temperature">Loading...</p>
</div>
<div class="sensor">
<h2>Humidity Sensor</h2>
<p id="humidity">Loading...</p>
</div>
</div>
</div>
</div>
<script src="sensorsdata.js"></script>
</body>
</html>