-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.69 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
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>Uglyfolio</title>
<meta name="theme-color" content="#ffffff" />
<meta property="title" content="Uglyfolio" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="author" content="@VanZelleb" />
<meta
name="description"
content="Minimalistic stock portfolio app with performance statistics."
/>
<link
href="/src/style.css"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<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=Inter:wght@500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato&display=swap"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link
href="https://fonts.googleapis.com/css2?family=Material+Icons"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link rel="manifest" href="/manifest.json" />
<link
rel="icon"
type="image/png"
href="/images/chrome/chrome-favicon-16-16.png"
/>
<link
rel="apple-touch-icon"
href="/images/chrome/chrome-installprocess-128-128.png"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="/sw-register.js"></script>
</body>
</html>