21 lines
833 B
HTML
21 lines
833 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Recherche de films Riot.js</title>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/riot@6.0.1/riot.min.js"></script>
|
||
|
<style>
|
||
|
body { font-family: sans-serif; display: flex; flex-direction: column; align-items: center; padding: 20px; }
|
||
|
#movie-list { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
|
||
|
.movie-card { width: 200px; border: 1px solid #ccc; padding: 10px; text-align: center; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
|
||
|
.movie-card img { max-width: 100%; height: auto; border-radius: 5px; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<search-app></search-app>
|
||
|
<script type="module">
|
||
|
import './search-app.riot';
|
||
|
riot.mount('search-app');
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|