-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 1.81 KB
/
index.html
File metadata and controls
60 lines (58 loc) · 1.81 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>Vite + Lit + TS</title>
<link rel="stylesheet" href="./src/index.css" />
<script type="module" src="/src/annotative/annotative-code.ts"></script>
<script
type="module"
src="/src/annotative/annotative-code-full.ts"
></script>
<script
type="module"
src="/src/annotative/annotative-code-common.ts"
></script>
<!-- <script type="module" src="./bin/annotative-code.bundled.js"></script>
<script type="module" src="./bin/annotative-code-full.bundled.js"></script>
<script
type="module"
src="./bin/annotative-code-common.bundled.js"
></script> -->
<!-- <script
type="module"
src="https://unpkg.com/annotative-code/bin/annotative-code.bundled.js"
></script>
<script
type="module"
src="https://unpkg.com/annotative-code/bin/annotative-code-full.bundled.js"
></script>
<script
type="module"
src="https://unpkg.com/annotative-code/bin/annotative-code-common.bundled.js"
></script> -->
</head>
<body>
<div class="container">
<annotative-code id="block-1"></annotative-code>
</div>
<div class="container">
<annotative-code id="block-2"></annotative-code>
</div>
<div class="container">
<annotative-code id="block-3"></annotative-code>
</div>
<div class="container">
<annotative-code-full id="block-4"></annotative-code-full>
</div>
<div class="container">
<annotative-code-common id="block-5"></annotative-code-common>
</div>
<script type="module" src="/script.ts"></script>
</body>
</html>