-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (31 loc) · 1.04 KB
/
index.html
File metadata and controls
46 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Smart Freshness Detector</title>
<style>
body { font-family: Arial; background-color: #f9f9f9; padding: 30px; }
.card {
background: white;
padding: 20px;
border-radius: 10px;
width: 400px;
margin: auto;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 { color: #333; }
p { font-size: 18px; }
</style>
</head>
<body>
<div class="card">
<h2>Freshness Prediction</h2>
<p><strong>Timestamp:</strong> {{ data.timestamp }}</p>
<p><strong>Gas Sensor:</strong> {{ data.gas }}</p>
<p><strong>Temperature:</strong> {{ data.temperature }} °C</p>
<p><strong>Humidity:</strong> {{ data.humidity }}%</p>
<p><strong>Color Value:</strong> {{ data.color }}</p>
<p><strong>pH Level:</strong> {{ data.ph }}</p>
<p><strong>Status:</strong> <b>{{ data.freshness }}</b></p>
</div>
</body>
</html>