24 lines
775 B
HTML
24 lines
775 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Recherche de films</title>
|
|
<style>
|
|
body { font-family: sans-serif; padding: 20px; }
|
|
#search-container { margin-bottom: 20px; }
|
|
#movie-list { display: flex; flex-wrap: wrap; gap: 20px; }
|
|
.movie-card { width: 200px; border: 1px solid #ccc; padding: 10px; text-align: center; }
|
|
.movie-card img { max-width: 100%; height: auto; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Recherche de films</h1>
|
|
<div id="search-container">
|
|
<input type="text" id="searchInput" placeholder="Titre du film...">
|
|
<button id="searchBtn">Rechercher</button>
|
|
</div>
|
|
<div id="movie-list"></div>
|
|
|
|
<script type="module" src="app.js"></script>
|
|
</body>
|
|
</html> |