-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (48 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<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;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link href="./styles.css" rel="stylesheet" type="text/css" />
<script src="./app.js" type="text/javascript"></script>
<script src="./app/main/home/home.script.js" type="module"></script>
<script src="./app/shared/navbar/navbar.js" type="text/javascript"></script>
<script src="./app/main/date-helper.js" type="module"></script>
<script
src="./app/main/home/new-entry-button/new-entry-button.js"
type="text/javascript"
defer
></script>
<script
src="./app/main/home/entry-item/entry-item.js"
type="module"
defer
></script>
<script src="./app/main/home/home.js" type="text/javascript" defer></script>
<script src="./app/main/view-entry/view-entry.js" type="module"></script>
<script
src="./app/main/view-entry/view-entry.script.js"
type="module"
></script>
<script src="./app/main/input-entry/input-entry.js" type="module"></script>
<script
src="./app/main/input-entry/input-entry.script.js"
type="module"
></script>
</head>
<body>
<header>
<navbar-component></navbar-component>
</header>
<main>
<home-page></home-page>
</main>
</body>
</html>