-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no"
/>
<base href="/" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
class="js-site-favicon"
type="image/svg+xml"
href="https://github.githubassets.com/favicons/favicon.svg"
/>
<title>LitLine Demo - Adrien Pinet</title>
<meta
name="description"
content="SVG line chart web component based on lit-html. fast, small, reactive, responsive. Made with love by Adrien Pinet."
/>
<style>
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: "Nunito", "SF Pro Text", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-webkit-font-smoothing: antialiased;
color: #113;
}
</style>
</head>
<body>
<index-app></index-app>
</body>
<script type="module" src="./index-app.js"></script>
</html>