-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavorite.html
More file actions
66 lines (55 loc) · 1.94 KB
/
Copy pathfavorite.html
File metadata and controls
66 lines (55 loc) · 1.94 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>favorite</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<nav id="navbar-main">
<div class="menu-icon"><span class="fas fa-bars"></span></div>
<div class="logo">Movies Dairy</div>
<ul class="menu">
<li>
<a href="./index.html">HOME</a>
</li>
<li>
<a href="./wishlist.html">FAVORITES</a>
</li>
<!-- <li>
<a href="#">WATCHTIME</a>
</li> -->
<li>
<a href="./wishlist.html">WISHLIST</a>
</li>
</ul>
<div class="cancel-icon"><span class="fas fa-times"></span></div>
<div id="search-container">
<!-- <input type="text" id="search-bar" placeholder="search..." /> -->
<a href="./search.html"><i class="fal fa-search"></i></a>
</div>
</nav>
<div class="title-top-rated">
<h1>YOUR FAVORITE MOVIES</h1>
</div>
<div class="all-favorites">
</div>
<div class="overlay">
<div class="about-movie">
<div class="movie-card">
<h1>LOADING...</h1>
</div>
<a class="close">close</a>
</div>
</div>
<div id="toasts"></div>
<script src="./favorite.js"></script>
<script src="./addToFavorites.js"></script>
<script src="./addToWishlist.js"></script>
</body>
</html>