-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 882 Bytes
/
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
<!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" />
<title>HyperNote</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div id="hypernote-header">
<img
src="/construction.gif"
alt="Under construction"
width="16px"
height="16px"
/>
<small>
<a href="/" alt="About hypernote">HyperNote</a> is an
experiment that commits several html crimes, be careful what you
sign!
</small>
<img
src="/construction.gif"
alt="Under construction"
width="16px"
height="16px"
/>
</div>
<div data-router-outlet id="root"></div>
<script type="module" src="/src/index.ts"></script>
<script type="module" src="/src/hn.ts"></script>
</body>
</html>