Téléverser les fichiers vers "/"

This commit is contained in:
2025-11-14 22:07:01 +00:00
parent 8e8fc0fbd6
commit ac78ee9d01
2 changed files with 138 additions and 0 deletions

69
film1.html Normal file
View File

@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MovieLooker - Lecture: Mon Premier Film</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Oswald:wght@500&display=swap" rel="stylesheet">
</head>
<body class="player-page">
<header class="player-header">
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="MovieLooker Logo">
<span>MovieLooker</span>
</a>
</div>
<a href="index.html" class="back-to-gallery">
<span class="icon-arrow">&larr;</span> Retour à l'accueil
</a>
</header>
<main class="player-main">
<div class="video-player-section">
<video controls autoplay class="main-video" poster="images/poster_film1.jpg">
<source src="videos/mon-premier-film.mp4" type="video/mp4">
<p>Votre navigateur ne supporte pas la lecture vidéo.</p>
</video>
</div>
<section class="film-details">
<div class="film-details-content">
<img src="images/poster_film1.jpg" alt="Affiche de Mon Premier Film" class="detail-poster">
<div class="details-text">
<h1>Mon Premier Film</h1>
<p class="tagline">"Là où l'imagination prend son envol."</p>
<p class="synopsis">Ce film explore les profondeurs de l'âme humaine à travers un voyage initiatique. Réalisé avec passion en 2025, il promet une expérience inoubliable. Préparez-vous à rire, pleurer et réfléchir.</p>
<div class="meta-info">
<span>Année: 2025</span>
<span>Durée: 1h30min</span>
<span>Genre: Drame, Aventure</span>
</div>
<div class="call-to-action">
<button class="btn btn-primary-alt">Partager</button>
<button class="btn btn-secondary-alt">Ajouter à ma liste</button>
</div>
</div>
</div>
<aside class="related-content">
<h3>Vous aimerez peut-être aussi :</h3>
<div class="related-movies">
<div class="related-card">
<img src="images/poster_film1.jpg" alt="Film Similaire 1">
<h4>Film Similaire</h4>
</div>
</div>
</aside>
</section>
</main>
<footer class="main-footer">
<p>&copy; 2024 MovieLooker. Tous droits réservés.</p>
</footer>
</body>
</html>