-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 774 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 774 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Stacked Bar Chart</title>
<style>
/* Define styles for the SVG container, bars, labels, etc. */
#chart {
width: 800px;
height: 400px;
}
.bar {
fill-opacity: 0.8;
stroke: white;
stroke-width: 1px;
}
/* Add hover effects and transitions for interactivity */
.bar:hover {
fill-opacity: 1;
}
</style>
</head>
<body>
<h1>Recursive Sustainability Hackathon 2024-05-07</h1>
<div>
Stacked Bar Chart
<div id="chart"></div>
</div>
<div class="debug-message">Debug: If there is nothing _visible_ above this line, check the console for errors</div>
<script type="module" src="./script.js"></script>
</body>
</html>