-
Notifications
You must be signed in to change notification settings - Fork 2
/
favorites.html
62 lines (58 loc) · 2.11 KB
/
favorites.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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Favorites</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"
/>
<link rel="stylesheet" href="assets/styles/sitewide.css" />
<link rel="stylesheet" href="assets/styles/favorites.css" />
<script src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
</head>
<body>
<header>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img
src="assets/images/imbd-logos_transparent.png"
class="imbd-logo"
/>
<img
hidden
src="./assets/images/imbd-small.png"
class="imbd-small"
alt="imbd-logo"
/>
</a>
<a role="button" id="burger" class="navbar-burger">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-menu" class="navbar-menu">
<div class="navbar-start has-text-right">
<a href="index.html" class="navbar-item"> Home </a>
<a href="staying-in.html" class="navbar-item"> Staying In </a>
<a href="going-out.html" class="navbar-item"> Going Out </a>
<a href="genre.html" class="navbar-item"> Genres </a>
<a href="favorites.html" class="navbar-item"> Favorites </a>
</div>
</div>
</nav>
</header>
<div class="container">
<h1 class="title is-1 has-text-centered pt-4 has-text-white">
Favorites
</h1>
</div>
<div class="container" id="favorites-list"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="assets/js/favorites.js"></script>
</body>
</html>