-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal.html
More file actions
66 lines (62 loc) · 1.91 KB
/
journal.html
File metadata and controls
66 lines (62 loc) · 1.91 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
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Sniglet&display=swap"
rel="stylesheet"
/>
<title>Journal</title>
<link href="styles.css" rel="stylesheet"></link>
<script defer src="journal.js"></script>
<style>
body {
font-family: 'Sniglet', cursive;
}
</style>
</head>
<body
class="flex items-center justify-center text-center flex-col bg-gradient-to-r from-red-900 to-pink-400"
>
<!-- Navbar ---@author------->
<nav
class="nav flex justify-between items-center bg-gray-200 h-[50px] sticky top-0 z-10 shadow-md mb-4"
>
<!-- Home -------@author----->
<a
class="active flex font-bold text-center pr-3 hover:bg-red-300"
href="index.html"
>
<img
class="h-[50px] p-3"
src="./assets/pokeball.png"
alt="pokeball icon"
/>
<h3 class="align-middle self-center">Pokédex</h3>
</a>
<!-- Favorites -------@author----->
<a
class="active flex font-bold pr-3 hover:bg-red-300"
href="journal.html"
>
<img class="h-[50px] p-3" src="./assets/heart.png" alt="heart icon" />
<h3 class="align-middle self-center">Favorites</h3>
</a>
</nav>
<main>
<section>
<h1 class="text-4xl font-bold">Favorites</h1>
<p id="favoritesCount" class="text-xl mt-4">Total Favorites :</p>
<!-- TODO implement sum of list -->
</section>
<section
id="favoritesList"
class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 p-4"
></section>
</main>
<footer class="flex bg-gray-200 h-[50px] fixed bottom-0 w-full">
<p class="pl-3 self-center">© PokéLove Inc. 💕</p>
</footer>
</body>
</html>