-
Notifications
You must be signed in to change notification settings - Fork 0
/
movie-list.html
106 lines (100 loc) · 2.89 KB
/
movie-list.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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" />
<meta name="title" content="LetsWatch" />
<meta
name="description"
content="LetsWatch is a movie recommendation app made for my project work. #CAP615"
/>
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.svg" type="image/svg" />
<!-- Prerequisite -->
<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=DM+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Title -->
<title>LetsWatch | Home</title>
<!-- StyleSheet : CSS -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Scripting : JS -->
<script src="assets/js/global.js" defer></script>
<script src="assets/js/movie-list.js" type="module"></script>
</head>
<body>
<!-- Header -->
<header class="header">
<a href="./index.html" class="logo">
<img
src="./assets/images/logo.svg"
alt="Tvflix Home"
width="140"
height="32"
/>
</a>
<div class="search-box" search-box>
<div class="search-wrapper" search-wrapper>
<input
type="text"
name="search"
aria-label="search movies"
placeholder="Search any movies..."
class="search-field"
autocomplete="off"
search-field
/>
<img
src="./assets/images/search.png"
alt="search"
class="leading-icon"
width="24"
height="24"
/>
</div>
<button class="search-btn" search-toggler menu-close>
<img
src="./assets//images/close.png"
width="24"
height="24"
alt="open search box"
/>
</button>
</div>
<button class="search-btn" search-toggler menu-close>
<img
src="./assets/images/search.png"
width="24"
height="24"
alt="open search box"
/>
</button>
<button class="menu-btn" menu-btn menu-toggler>
<img
src="./assets/images/menu.png"
alt="open menu"
class="menu"
width="24"
height="24"
/>
<img
src="./assets/images/menu-close.png"
alt="close menu"
class="close"
width="24"
height="24"
/>
</button>
</header>
<main>
<!-- Sidebar -->
<nav class="sidebar" sidebar></nav>
<div class="overlay" overlay menu-toggler></div>
<article class="container" page-content></article>
</main>
</body>
</html>