20 lines
342 B
HTML
20 lines
342 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Webstat</title>
|
||
|
<meta charset="utf-8">
|
||
|
<script src="stat.mjs" type="module"></script>
|
||
|
<style>
|
||
|
#pie {
|
||
|
max-width: 50px;
|
||
|
position: absolute;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="pie"></div>
|
||
|
<div id="chart"></div>
|
||
|
</body>
|
||
|
</html>
|