-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatchlist.html
25 lines (24 loc) · 1.26 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<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:wght@100..900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://kit.fontawesome.com/2decf6ce72.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>My Watchlist</h1>
<a href="index.html">Search for movies</a>
</header>
<main>
<div class="start-state">
<h2>Your watchlist is looking a little empty...</h2>
<a href="index.html" class="add-movies-btn"><i class="fa-solid fa-circle-plus"></i>Let’s add some movies!</a>
</div>
<div class="page-padding" id="movies-container"></div>
</main>
<script src="watchlist.js" type="module"></script>
</body>
</html>