-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 791 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 791 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet="utf-8">
<title>DP100 WebApp</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="assets/icons/icon512_rounded.png" type="image/png">
<style>
:root {
color-scheme: light dark;
}
body {
color: CanvasText;
background-color: Canvas;
margin: 0;
}
</style>
<script type="importmap">
{
"imports": {
"#js/": "./assets/js/",
"lit": "https://cdn.jsdelivr.net/npm/lit/+esm",
"uplot": "https://cdn.jsdelivr.net/npm/uplot/+esm"
}
}
</script>
</head>
<body>
<dp100-element>
</dp100-element>
<script type="module">import '#js/ui.js'</script>
</body>
</html>