stat.html
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>CPU Stats</title>
5 <meta charset="utf-8">
6 <link rel="icon" href="portal.png">
7 <script src="stat.mjs" type="module"></script>
8 <style>
9html, body {
10 margin: 0;
11 overflow: clip;
12}
13#pie canvas {
14 max-width: 20vw;
15 max-height: 20vh;
16 position: absolute;
17 opacity: 90%;
18 top: 10px;
19 left: 10px;
20}
21#area canvas {
22 width: 100vw;
23 height: 99vh;
24}
25 </style>
26 </head>
27
28 <body data-autostat>
29 <div id="pie" class="pie chart"></div>
30 <div id="area" class="area chart"></div>
31 </body>
32</html>