-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
29 lines (29 loc) · 845 Bytes
/
Copy pathsearch.html
File metadata and controls
29 lines (29 loc) · 845 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cinescript</title>
<link rel="stylesheet" href="src/styles/pages/search.css" />
</head>
<body>
<main>
<img src="src/assets/logo.png" alt="cinescript" />
<div class="wrap">
<div class="search">
<label for="search-input">Recherchez vos films favoris</label>
<input
type="search"
id="search-input"
name="q"
aria-label="Search your favorite movie"
/>
</div>
</div>
<div id="error-message"></div>
<div id="movie-list"></div>
</main>
<script src="src/scripts/common.js"></script>
<script src="src/scripts/search.js"></script>
</body>
</html>