portal/web/stat.html

27 lines
482 B
HTML
Raw Normal View History

2023-03-11 08:54:24 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Webstat</title>
<meta charset="utf-8">
<script src="stat.mjs" type="module"></script>
<style>
html, body {
margin: 0;
}
#pie canvas {
2023-03-11 08:54:24 -07:00
max-width: 50px;
position: absolute;
}
#area canvas {
width: 100vw;
height: 99vh;
2023-03-11 08:54:24 -07:00
}
</style>
</head>
<body data-autostat>
<div id="pie" class="pie chart"></div>
<div id="area" class="area chart"></div>
2023-03-11 08:54:24 -07:00
</body>
</html>