-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 2.06 KB
/
index.html
File metadata and controls
61 lines (59 loc) · 2.06 KB
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
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<title>Notes App API</title>
</head>
<body>
<app-header></app-header>
<main>
<div class="container">
<note-form></note-form>
<div class="show-container">
<button id="showUnarchivedBtn">
<i class="fa-solid fa-box-open"></i>Show Unarchived Notes
</button>
<button id="showArchivedBtn">
<i class="fa-solid fa-box-archive"></i>Show Archived Notes
</button>
</div>
<note-list></note-list>
<note-detail></note-detail>
<loading-indicator></loading-indicator>
</div>
</main>
<app-footer></app-footer>
<script src="/index.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.2/anime.min.js"
integrity="sha512-aNMyYYxdIxIaot0Y1/PLuEu3eipGCmsEUBrUq+7aVyPGMFH8z0eTP0tkqAvv34fzN6z+201d3T8HPb1svWSKHQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script>
anime({
targets: '.show-container',
scale: [0.9, 1],
opacity: [0, 1],
duration: 600,
easing: 'easeInOutQuad',
});
</script>
</body>
</html>