-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatchlist.html
32 lines (30 loc) · 1.46 KB
/
watchlist.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Watchlist</title>
<!-- Google Fonts -->
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<!-- Icons -->
<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" />
<!-- Stylesheets -->
<link rel="stylesheet" href="styles/globals.css">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/watchlist.css">
</head>
<body class="flex inter">
<header class="flex al-c header container full-width">
<h1 class="header__title">My Watchlist</h1>
<a href="index.html" class="header__link bold text-dec-none">Search for movies</a>
</header>
<main class="full-width">
<section id="movies" class="flex al-c jc-c container full-width movies-list"> </section>
</main>
<div class="color-mode__wrapper" id="color-mode"></div>
<script src="scripts/watchlist.js" type="module"></script>
<script src="scripts/shared.js" type="module"></script>
</body>
</html>