-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatchlist.html
52 lines (49 loc) · 2.51 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Movie Watchlist — data</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="shortcut icon" type="image/x-icon" sizes="32x32" href="favicon-32x32.png">
<link rel="shortcut icon" type="image/x-icon" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- 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=Smythe&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,900&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
</head>
<body>
<div class="container">
<header>
<h1 class="title">My Watchlist</h1>
<a class="top-link" href="index.html">Search for movies</a>
</header>
<main>
<div class="field-container">
<div class="initial-state-list" id="initial-state-list">
<h2 class="empty">Your watchlist is looking a little empty...</h2>
<div class="add-container-main">
<a class="add-main" href="index.html">
<img class="add-icon-main" id="add-icon-main" src="images/add-icon.png">
</a>
<h3 class="lets-add">Let’s add some movies!</h3>
</div>
</div>
<ul class="watchlist" id="watchlist">
<!-- Movies in a watchlist are here -->
</ul>
</div>
</main>
</div>
<script src="index.js" type="module"></script>
</body>
</html>