-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.1 KB
/
index.html
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
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
type="image/ico"
href="assets/favicon-ALXmemir.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/apple-touch-icon-rgagzx0g.png" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon-32x32-ZmHFtdgA.png" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon-16x16-rn22XzRx.png" />
<link rel="manifest" href="assets/site.webmanifest" />
<title>IOT Charts</title>
<link href="index.css" rel="stylesheet" />
<script src="plotly-2.30.0.min.js" charset="utf-8"></script>
<script type="module">
import { createPlot } from './index.mjs'
createPlot()
</script>
</head>
<body>
<div class="container">
<a class="button-link" href=".">↻</a>
<div id="table" class="table"></div>
<div id="chart" class="chart"></div>
</div>
</body>
</html>