-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-search.html
45 lines (39 loc) · 1.01 KB
/
02-search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Movies</title>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header>
<h1>Search Movies</h1>
<nav>
<a href="01-index.html">Trending Movies</a>
</nav>
</header>
<main>
<section id="search-section">
<h2>Find Your Favorite Movies</h2>
<!-- Barre de recherche -->
<input
type="text"
id="search-bar"
placeholder="Enter a movie title..."
autocomplete="off"
/>
<!-- Conteneur pour les résultats -->
<div id="search-results">
<!-- Les résultats de recherche s'afficheront ici via JS -->
</div>
<!-- Bouton pour charger plus -->
<button id="load-more-results">Load More Results</button>
</section>
</main>
<footer>
<p>© 2025 My Cinema</p>
</footer>
<script type="module" src="./js/search.js"></script>
</body>
</html>