-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·33 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple notes</title>
<link rel="shortcut icon" href="icon.svg" type="image/svg">
<!-- <link rel="stylesheet" href="./src/styles/normalize.css" />
<link rel="stylesheet" href="./src/styles/skeleton.css" />
<link rel="stylesheet" href="./src/styles/animate.min.css" /> -->
<link rel="stylesheet" href="./src/styles/index.scss" />
<script type="module" src="/src/notes-router.ts"></script>
<meta name="theme-color" content="#181a1b" />
<link rel="apple-touch-icon" href="public/icon.png">
<style>
#root {
min-height: 100vh;
min-width: 100vw;
}
body, #root {
background-color: #181a1b;
}
</style>
</head>
<body>
<notes-router id="root"></notes-router>
</body>
</html>