-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (46 loc) · 1.47 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
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" crossorigin>
<link rel="prefetch" href="./webcomponents/home/home-navigation.html" />
<link rel="prefetch" href="./webcomponents/home/home-view.html" />
<link rel="prefetch" href="./webcomponents/home/home-header.html" />
<link rel="prefetch" href="./webcomponents/animals/animals-view.html" />
<link rel="prefetch" href="./webcomponents/animals/animals-li.html" />
<link rel="prefetch" href="./webcomponents/quick/quick-delete.html" />
<link rel="prefetch" href="./webcomponents/webrtc/webrtc-view.html" />
<link rel="prefetch" href="./webcomponents/sqlite/sqlite3-control.html" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="./assets/styles.css" />
<title>JSonly</title>
</head>
<body>
<style>
* {
box-sizing: border-box;
margin: 0;
}
html {
height: 100%;
}
body {
background-image: linear-gradient(#040404, antiquewhite);
background-attachment: fixed;
}
main {
padding: 20px;
position: absolute;
top: 273px;
z-index: -1;
}
</style>
<div id="app">
<home-navigation></home-navigation>
<main id="main"></main>
</div>
<script type="module" src="/only.js"></script>
</body>
</html>