-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 998 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fridge Access Analysis</title>
<link rel="stylesheet" href="styles.css" />
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div id="title">
<img src="fridge.gif" alt="Refrigerator" id="fridge" />
<h1>Fridge Access Analysis</h1>
<img src="refrigerator.gif" alt="Refrigerator" id="fridge" />
</div>
<!-- Data Filter Input-->
<div id="data-filters">
<label for="start-date">From:</label>
<input type="date" id="start-date" value="2024-07-25" />
<label for="end-date">to:</label>
<input type="date" id="end-date" value="2025-06-30" />
</div>
<button id="filter-button">Filter Data</button>
<div id="chart"></div>
<script src="script.js"></script>
</body>
</html>