-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (25 loc) · 865 Bytes
/
index.html
File metadata and controls
37 lines (25 loc) · 865 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="pie-chart.css" />
</head>
<body>
<div class="container">
<div class="space-labels">
<div class="freespace-label"></div>
<div class="usedspace-label"></div>
</div>
<svg id="pie-chart" class="pie-svg" viewBox="0 0 500 500"> </svg>
<div class="data">
<div class="totals">
<div id="totals-text"> </div>
</div>
<div class="detail"> </div>
<div class="buttons"> </div>
</div>
<div class="error"> </div>
</div>
</body>
<script src="pie-chart.js"></script>
</html>